seimin 2 years ago
parent
commit
d543a30fd8
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/views/summaryOrder.vue

+ 6 - 0
src/views/summaryOrder.vue

@@ -163,7 +163,13 @@ export default {
163
     },
163
     },
164
     // 获取汇总单信息
164
     // 获取汇总单信息
165
     getInfo() {
165
     getInfo() {
166
+      const toast = this.$createToast({
167
+        txt: "Loading...",
168
+        mask: true
169
+      });
170
+      toast.show();
166
       this.$http.post("/service/bpm/data/querySummaryDoc", {incidentId: this.$route.params.incidentId}).then(res => {
171
       this.$http.post("/service/bpm/data/querySummaryDoc", {incidentId: this.$route.params.incidentId}).then(res => {
172
+        toast.hide();
167
         if(res.data.status == 200){
173
         if(res.data.status == 200){
168
           this.summaryObj = res.data;
174
           this.summaryObj = res.data;
169
           if(this.summaryObj.consumableList){
175
           if(this.summaryObj.consumableList){