c5c0a832 by lihua

质量过滤条件验证sql传dataSource

1 parent 5b255e23
...@@ -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) => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!