diff --git a/src/views/qm/process.vue b/src/views/qm/process.vue
index 98f858e9..b74ed97f 100644
--- a/src/views/qm/process.vue
+++ b/src/views/qm/process.vue
@@ -4,7 +4,15 @@
-
+
+
+
+
+
查询
@@ -15,6 +23,12 @@
+
+
+
+
+
+
@@ -58,7 +72,7 @@
-
+
@@ -88,9 +102,18 @@ export default {
10: '',
20: '',
},
+ mgroupOption:[],
};
},
+ mounted() {
+ this.getMgroup();
+ },
methods: {
+ getMgroup(){
+ this.$API.mtm.mgroup.list.req({page:0,}).then((res) => {
+ this.mgroupOption = res;
+ });
+ },
handleQuery() {
this.$refs.table.queryData(this.query)
},