649c7dcb by lihua

fix: 修复质量相关

1 parent dd77482d
......@@ -681,7 +681,7 @@ const getSubjectTableTreeData = () => {
child.label = child.name + `(${child.tableName})`;
child.isLeaf = true;
child.dataServerName = child.databaseName;
child.dataSourceGuid = d.guid;
child.dataSourceGuid = d.dataSourceGuid || d.guid;
return child;
})
return d;
......@@ -2747,8 +2747,16 @@ defineExpose({
}
}
.table-field {
width: 360px;
.left-title {
border-right: 1px solid #d9d9d9;
}
}
.sql-edit {
width: calc(100% - 360px);
width: calc(100% - 560px);
.el-select {
margin-left: 12px;
......
......@@ -95,7 +95,7 @@ const getSubjectTableTreeData = () => {
d.children = d.children?.map(child => {
child.label = child.name + `(${child.tableName})`;
child.dataServerName = child.databaseName;
child.dataSourceGuid = d.guid;
child.dataSourceGuid = d.dataSourceGuid || d.guid;
return child;
})
return d;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!