diff --git a/src/views/modules/tooling/components/com_tool_info_add_update.vue b/src/views/modules/tooling/components/com_tool_info_add_update.vue index e10041b..9ff9f6f 100644 --- a/src/views/modules/tooling/components/com_tool_info_add_update.vue +++ b/src/views/modules/tooling/components/com_tool_info_add_update.vue @@ -372,7 +372,7 @@ export default { this.$nextTick(() => { let strVal = '' if(val === 1019 || val === 1023){ - let strCon = ' AND site = \''+ this.pageData.site+'\''; + let strCon = ' AND site = \'*\''; this.$refs.baseList.init(val, strVal, strCon) }else{ this.$refs.baseList.init(val, strVal) diff --git a/src/views/modules/tooling/components/com_tool_instance_add_update.vue b/src/views/modules/tooling/components/com_tool_instance_add_update.vue index ba5f0d4..8ca64bb 100644 --- a/src/views/modules/tooling/components/com_tool_instance_add_update.vue +++ b/src/views/modules/tooling/components/com_tool_instance_add_update.vue @@ -375,7 +375,7 @@ export default { this.$nextTick(() => { let strVal = '' if(val === 1020 || val === 1021 || val === 1022 || val === 1024){ - let strCon = ' AND site = \''+ this.pageData.site+'\''; + let strCon = ' AND site = \'*\''; this.$refs.baseList.init(val, strVal, strCon) }else{ this.$refs.baseList.init(val, strVal) diff --git a/src/views/modules/tooling/components/com_tool_property_show.vue b/src/views/modules/tooling/components/com_tool_property_show.vue index e8804e8..a8f4004 100644 --- a/src/views/modules/tooling/components/com_tool_property_show.vue +++ b/src/views/modules/tooling/components/com_tool_property_show.vue @@ -24,7 +24,7 @@
@@ -70,7 +70,7 @@ export default { this.propertyNo = toolInfo.propertyNo; this.propertyType = 'TL'; this.titleCon = '工具属性维护'; - this.pageData.site = toolInfo.site; + this.pageData.site = '*'; this.pageData.toolId = toolInfo.toolId; this.pageData.toolInstance = ''; }else if(dataType === 'TLI'){ @@ -79,7 +79,7 @@ export default { this.propertyNo = toolInfo.propertyNo; this.propertyType = 'TLI'; this.titleCon = '工具实例属性维护'; - this.pageData.site = toolInfo.site; + this.pageData.site = '*'; this.pageData.toolId = toolInfo.toolId; this.pageData.toolInstance = toolInfo.toolInstance; } diff --git a/src/views/modules/tooling/components/orderProperties.vue b/src/views/modules/tooling/components/orderProperties.vue index bfa630c..401273a 100644 --- a/src/views/modules/tooling/components/orderProperties.vue +++ b/src/views/modules/tooling/components/orderProperties.vue @@ -287,7 +287,7 @@ export default { type: 'warning' }).then(() => { let params = { - site: this.$store.state.user.site, + site: '*', partNo: this.orderNo, codeNo: this.codeNo, recordType: this.functionType, @@ -309,7 +309,7 @@ export default { }, getProperties(){ let params = { - site:this.$store.state.user.site, + site: '*', partNo: this.orderNo, codeNo: this.codeNo, recordType: this.functionType, @@ -414,7 +414,7 @@ export default { this.searchDataList = []; } let inData={ - site:this.$store.state.user.site, + site: '*', functionType: this.functionType, list :this.dataList, }