Browse Source

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

lucky-lzx 2 năm trước cách đây
mục cha
commit
0a6d844d49
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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({