From d55da9319c3a1959c7cfe4866a0ea860e0165ce0 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Wed, 16 Apr 2025 09:54:38 +0800 Subject: [PATCH] 2025-04-15 --- src/views/modules/tooling/toolingInfo.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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) }) }, /* 列表方法的回调 */