Selaa lähdekoodia

修改卸货取货按钮回调函数

zhifei 1 vuosi sitten
vanhempi
commit
546d5ef7eb
1 muutettua tiedostoa jossa 12 lisäystä ja 9 poistoa
  1. 12 9
      ruoyi-ui/src/views/ams/task/index.vue

+ 12 - 9
ruoyi-ui/src/views/ams/task/index.vue

@@ -727,28 +727,31 @@ export default {
     },
     handlePickupCompleted (row) {
       const taskNos = row.taskNo
+      let vue = this
       this.$modal.confirm('是否确认取货完成"' + taskNos + '"的任务?').then(function() {
         pickupCompleteWcsTask(taskNos).then(response => {
-          if (response.code === 200) {
-            this.getList();
-            this.$modal.msgSuccess(response.msg);
+          console.log(response)
+          if (response.code == 200) {
+            vue.getList();
+            vue.$modal.msgSuccess(response.msg);
           } else {
-            this.getList();
-            this.$modal.msgError(response.msg);
+            vue.getList();
+            vue.$modal.msgError(response.msg);
           }
         });
       });
     },
     handleComplete (row) {
       const taskNos = row.taskNo
+      const vue = this
       this.$modal.confirm('是否确认卸货完成"' + taskNos + '"的任务?').then(function() {
         completeWcsTask(taskNos).then(response => {
           if (response.code === 200) {
-            this.getList();
-            this.$modal.msgSuccess(response.msg);
+            vue.getList();
+            vue.$modal.msgSuccess(response.msg);
           } else {
-            this.getList();
-            this.$modal.msgError(response.msg);
+            vue.getList();
+            vue.$modal.msgError(response.msg);
           }
         });
       });