fix: 修复质量相关
Showing
2 changed files
with
11 additions
and
3 deletions
| ... | @@ -681,7 +681,7 @@ const getSubjectTableTreeData = () => { | ... | @@ -681,7 +681,7 @@ const getSubjectTableTreeData = () => { |
| 681 | child.label = child.name + `(${child.tableName})`; | 681 | child.label = child.name + `(${child.tableName})`; |
| 682 | child.isLeaf = true; | 682 | child.isLeaf = true; |
| 683 | child.dataServerName = child.databaseName; | 683 | child.dataServerName = child.databaseName; |
| 684 | child.dataSourceGuid = d.guid; | 684 | child.dataSourceGuid = d.dataSourceGuid || d.guid; |
| 685 | return child; | 685 | return child; |
| 686 | }) | 686 | }) |
| 687 | return d; | 687 | return d; |
| ... | @@ -2747,8 +2747,16 @@ defineExpose({ | ... | @@ -2747,8 +2747,16 @@ defineExpose({ |
| 2747 | } | 2747 | } |
| 2748 | } | 2748 | } |
| 2749 | 2749 | ||
| 2750 | .table-field { | ||
| 2751 | width: 360px; | ||
| 2752 | |||
| 2753 | .left-title { | ||
| 2754 | border-right: 1px solid #d9d9d9; | ||
| 2755 | } | ||
| 2756 | } | ||
| 2757 | |||
| 2750 | .sql-edit { | 2758 | .sql-edit { |
| 2751 | width: calc(100% - 360px); | 2759 | width: calc(100% - 560px); |
| 2752 | 2760 | ||
| 2753 | .el-select { | 2761 | .el-select { |
| 2754 | margin-left: 12px; | 2762 | margin-left: 12px; | ... | ... |
| ... | @@ -95,7 +95,7 @@ const getSubjectTableTreeData = () => { | ... | @@ -95,7 +95,7 @@ const getSubjectTableTreeData = () => { |
| 95 | d.children = d.children?.map(child => { | 95 | d.children = d.children?.map(child => { |
| 96 | child.label = child.name + `(${child.tableName})`; | 96 | child.label = child.name + `(${child.tableName})`; |
| 97 | child.dataServerName = child.databaseName; | 97 | child.dataServerName = child.databaseName; |
| 98 | child.dataSourceGuid = d.guid; | 98 | child.dataSourceGuid = d.dataSourceGuid || d.guid; |
| 99 | return child; | 99 | return child; |
| 100 | }) | 100 | }) |
| 101 | return d; | 101 | return d; | ... | ... |
-
Please register or sign in to post a comment