From 431fcf4bd82e0e3d39b8071100b587d828dea2a4 Mon Sep 17 00:00:00 2001 From: shijing Date: Thu, 21 Nov 2024 13:24:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=B0=BA=E5=AF=B8=E5=A4=96=E8=A7=82?= =?UTF-8?q?=EF=BC=88=E6=88=90=E5=93=81=EF=BC=89=E6=A3=80=E9=AA=8C=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=A3=80=E9=AA=8C=E8=AE=BE=E5=A4=87=E5=92=8C=E5=A4=87?= =?UTF-8?q?=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/qm/products_form.vue | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/views/qm/products_form.vue b/src/views/qm/products_form.vue index 0485da04..da161413 100644 --- a/src/views/qm/products_form.vue +++ b/src/views/qm/products_form.vue @@ -127,6 +127,32 @@ + + + + + {{item.name}} + {{item.number}} + + + + + + + + + @@ -482,6 +508,7 @@ export default { visible: false, isSaveing: false, options: [], + eqOptions: [], userList:[], shiftOtions:[], selectionFilters: [], @@ -491,6 +518,7 @@ export default { mounted() { this.getUsers(); this.getShift(); + this.geteEqOptions(); }, methods: { //显示 @@ -515,6 +543,11 @@ export default { that.userList = res; }); }, + geteEqOptions(){ + that.$API.system.user.list.req({ page: 0, type:20 }).then((res) => { + that.eqOptions = res; + }); + }, handleCheckChange(){ this.form.count_ok = this.form.count-this.form.count_notok; },