seimin лет назад: 2
Родитель
Сommit
d543a30fd8
1 измененных файлов с 6 добавлено и 0 удалено
  1. 6 0
      src/views/summaryOrder.vue

+ 6 - 0
src/views/summaryOrder.vue

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