diff --git a/src/views/inm/mioitem_check.vue b/src/views/inm/mioitem_check.vue index 23f80c6d..aba50f29 100644 --- a/src/views/inm/mioitem_check.vue +++ b/src/views/inm/mioitem_check.vue @@ -1346,11 +1346,16 @@ export default { //获取员工 getUserList() { let that = this; - this.$API.system.user.list - .req({ page: 0, posts__code__contains: "check" }) - .then((res) => { - that.userList = res; - }); + let params = {}; + params.page=0; + if(that.type == 'pur_in'&&that.project_code=='gx'){ + params.posts__code__contains = 'IQC' + }else{ + params.posts__code__contains = 'check' + } + this.$API.system.user.list.req(params).then((res) => { + that.userList = res; + }); }, addWeight() { this.weight_kgs.push({ value: 0 });