mushencc 3 年之前
父节点
当前提交
b35f28bef7
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/views/ProductionOrderList/Dispatchlist/details.vue

+ 3 - 1
src/views/ProductionOrderList/Dispatchlist/details.vue

@@ -572,7 +572,9 @@ export default {
       this.axios.post(url, data).then((res) => {
         if (res.code == 200) {
           this.$Message.success(res.msg);
-          this.getData(this.$route.query);
+           let data = {};
+      data = {...this.formData,...this.$route.query};
+          this.getData(data);
         }
       });
     },