diff --git a/src/views/modules/tooling/toolingInfo.vue b/src/views/modules/tooling/toolingInfo.vue index b055197..2861f8e 100644 --- a/src/views/modules/tooling/toolingInfo.vue +++ b/src/views/modules/tooling/toolingInfo.vue @@ -522,7 +522,7 @@ this.tagNo1 = type this.$nextTick(() => { let strVal = '' - let conSql = " and b.site = '" + this.$store.state.user.site + "'"; + if(type==1) { strVal = this.dataForm.quoter } @@ -532,7 +532,8 @@ if(type==3) { strVal = this.dataForm.purchaser } - this.$refs.userList.init(this.searchData.site,'%%', strVal,conSql) + + this.$refs.userList.init(this.searchData.site,'%%', strVal) }) }, /* 列表方法的回调 */ @@ -565,6 +566,7 @@ this.tagNo1 = type this.$nextTick(() => { let strVal = '' + let conSql = " and b.site = '" + this.$store.state.user.site + "'"; if(val==2002) { strVal = this.dataForm.quoter } @@ -575,7 +577,7 @@ strVal = this.dataForm.purchaser } - this.$refs.baseList.init(val, strVal) + this.$refs.baseList.init(val, strVal,conSql) }) }, /* 列表方法的回调 */