质量过滤条件验证sql传dataSource
Showing
2 changed files
with
4 additions
and
2 deletions
| ... | @@ -1420,7 +1420,8 @@ const selectSubjectTables = computed(() => { | ... | @@ -1420,7 +1420,8 @@ const selectSubjectTables = computed(() => { |
| 1420 | groupName: tInfo.modelGroupName, | 1420 | groupName: tInfo.modelGroupName, |
| 1421 | guid: tInfo.modelGuid, | 1421 | guid: tInfo.modelGuid, |
| 1422 | parentGuid: tInfo.modelGroupGuid, | 1422 | parentGuid: tInfo.modelGroupGuid, |
| 1423 | subjectGuid: tInfo.subjectGuid | 1423 | subjectGuid: tInfo.subjectGuid, |
| 1424 | dataSource: tInfo.dataSource | ||
| 1424 | }]; | 1425 | }]; |
| 1425 | } | 1426 | } |
| 1426 | return v.qualityModelGuid ? (treeSelectNode.value ? [treeSelectNode.value] : []): []; | 1427 | return v.qualityModelGuid ? (treeSelectNode.value ? [treeSelectNode.value] : []): []; | ... | ... |
| ... | @@ -149,7 +149,8 @@ const validateSql = () => { | ... | @@ -149,7 +149,8 @@ const validateSql = () => { |
| 149 | tables.map(t => { | 149 | tables.map(t => { |
| 150 | return { | 150 | return { |
| 151 | subjectGuid: t.subjectGuid, | 151 | subjectGuid: t.subjectGuid, |
| 152 | condition: filter | 152 | condition: filter, |
| 153 | dataSource: t.dataSource | ||
| 153 | } | 154 | } |
| 154 | }) | 155 | }) |
| 155 | ).then((res: any) => { | 156 | ).then((res: any) => { | ... | ... |
-
Please register or sign in to post a comment