mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-10 11:20:24 +08:00
!123 一些bug修复
* fix: 数据同步、数据迁移体验优化 * fix: des加密传输sql * fix: 修复达梦字段注释显示问题 * fix: mysql timestamp 字段类型导出ddl错误修复
This commit is contained in:
@@ -328,7 +328,7 @@ watch(dialogVisible, async (newValue: boolean) => {
|
||||
db.databases = db.database?.split(' ').sort() || [];
|
||||
state.srcDbInst = DbInst.getOrNewInst(db);
|
||||
state.form.srcDbType = state.srcDbInst.type;
|
||||
state.form.srcInstName = db.instanceName;
|
||||
state.form.srcInstName = db.name;
|
||||
}
|
||||
|
||||
// 初始化target数据源
|
||||
@@ -340,7 +340,7 @@ watch(dialogVisible, async (newValue: boolean) => {
|
||||
db.databases = db.database?.split(' ').sort() || [];
|
||||
state.targetDbInst = DbInst.getOrNewInst(db);
|
||||
state.form.targetDbType = state.targetDbInst.type;
|
||||
state.form.targetInstName = db.instanceName;
|
||||
state.form.targetInstName = db.name;
|
||||
}
|
||||
|
||||
if (targetDbId && state.form.targetDbName) {
|
||||
|
||||
Reference in New Issue
Block a user