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;
},