Przeglądaj źródła

导入 提交按钮增加非空判断

lucky-lzx 2 lat temu
rodzic
commit
0a6d844d49
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      src/views/orderEntry/orderImport/index.vue

+ 6 - 0
src/views/orderEntry/orderImport/index.vue

@@ -190,6 +190,12 @@ export default {
       }
     },
     async submitHttp(model) {
+      
+      if(model.list.length<=0){
+        this.$message.warning("导入数据不能为空");
+        return;
+      }
+     
       const res = await asyncRequest.orderimport(model);
       if (res && res.code === 0) {
         this.$notify.success({