Browse Source

2025-04-15

master
qiezi 9 months ago
parent
commit
d55da9319c
  1. 8
      src/views/modules/tooling/toolingInfo.vue

8
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)
})
},
/* 列表方法的回调 */

Loading…
Cancel
Save