diff --git a/src/views/datawashing/dataformatsRules/index.vue b/src/views/datawashing/dataformatsRules/index.vue index b865540..1499358 100644 --- a/src/views/datawashing/dataformatsRules/index.vue +++ b/src/views/datawashing/dataformatsRules/index.vue @@ -131,9 +131,9 @@ export default { getDataType() { getAction("/dataType/getExistingDataTypes", {}).then((res) => { if (res.success) { - this.dataTypeList = res.result.result.DATA_CONN_STANDARD - if(res.result.result.DATA_CONN_STANDARD.length > 0){ - this.queryParam.dataType = res.result.result.DATA_CONN_STANDARD[0].enName + this.dataTypeList = res.result.result.DATA_CONN_ORIGINAL + if(res.result.result.DATA_CONN_ORIGINAL.length > 0){ + this.queryParam.dataType = res.result.result.DATA_CONN_ORIGINAL[0].enName } this.getQueryPage() } else { diff --git a/src/views/datawashing/datatypeConversionRules/index.vue b/src/views/datawashing/datatypeConversionRules/index.vue index bdf6c29..0798e05 100644 --- a/src/views/datawashing/datatypeConversionRules/index.vue +++ b/src/views/datawashing/datatypeConversionRules/index.vue @@ -131,9 +131,9 @@ export default { getDataType() { getAction("/dataType/getExistingDataTypes", {}).then((res) => { if (res.success) { - this.dataTypeList = res.result.result.DATA_CONN_STANDARD - if(res.result.result.DATA_CONN_STANDARD.length > 0){ - this.queryParam.dataType = res.result.result.DATA_CONN_STANDARD[0].enName + this.dataTypeList = res.result.result.DATA_CONN_ORIGINAL + if(res.result.result.DATA_CONN_ORIGINAL.length > 0){ + this.queryParam.dataType = res.result.result.DATA_CONN_ORIGINAL[0].enName } this.getQueryPage() } else { diff --git a/src/views/datawashing/deEmphasisRules/index.vue b/src/views/datawashing/deEmphasisRules/index.vue index 24c20f9..ccc3c38 100644 --- a/src/views/datawashing/deEmphasisRules/index.vue +++ b/src/views/datawashing/deEmphasisRules/index.vue @@ -153,9 +153,9 @@ export default { getDataType() { getAction("/dataType/getExistingDataTypes", {}).then((res) => { if (res.success) { - this.dataTypeList = res.result.result.DATA_CONN_STANDARD - if(res.result.result.DATA_CONN_STANDARD.length > 0){ - this.queryParam.dataType = res.result.result.DATA_CONN_STANDARD[0].enName + this.dataTypeList = res.result.result.DATA_CONN_ORIGINAL + if(res.result.result.DATA_CONN_ORIGINAL.length > 0){ + this.queryParam.dataType = res.result.result.DATA_CONN_ORIGINAL[0].enName } this.getQueryPage() } else { diff --git a/src/views/datawashing/missingvalueRules/index.vue b/src/views/datawashing/missingvalueRules/index.vue index 129454a..a11b9e9 100644 --- a/src/views/datawashing/missingvalueRules/index.vue +++ b/src/views/datawashing/missingvalueRules/index.vue @@ -177,9 +177,9 @@ export default { getDataType() { getAction("/dataType/getExistingDataTypes", {}).then((res) => { if (res.success) { - this.dataTypeList = res.result.result.DATA_CONN_STANDARD - if(res.result.result.DATA_CONN_STANDARD.length > 0){ - this.queryParam.dataType = res.result.result.DATA_CONN_STANDARD[0].enName + this.dataTypeList = res.result.result.DATA_CONN_ORIGINAL + if(res.result.result.DATA_CONN_ORIGINAL.length > 0){ + this.queryParam.dataType = res.result.result.DATA_CONN_ORIGINAL[0].enName } this.getQueryPage() } else {