From 9ff7d57765b1eb3704b9425819cdb9c5708e0ab1 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期四, 14 八月 2025 22:53:32 +0800
Subject: [PATCH] 错误捕获

---
 src/views/flowmgr/backImport.vue |  101 ++++++++++++++++++++++++--------------------------
 1 files changed, 49 insertions(+), 52 deletions(-)

diff --git a/src/views/flowmgr/backImport.vue b/src/views/flowmgr/backImport.vue
index adee9d1..542641b 100644
--- a/src/views/flowmgr/backImport.vue
+++ b/src/views/flowmgr/backImport.vue
@@ -1,22 +1,17 @@
 <template>
   <basic-container>
-    <avue-crud
-      :addBtn="false"
-      :option="option"
-      :table-loading="loading"
-      :data="data"
-      ref="crud"
-      @selection-change="selectionChange"
-    >
+    <avue-crud :addBtn="false" :option="option" :table-loading="loading" :data="data" ref="crud"
+      @selection-change="selectionChange">
       <template #menu-left>
         <div style="display: flex;">
           <el-button type="primary" size="default" icon="el-icon-circle-plus" @click="importData">瀵煎叆</el-button>
-          <el-button type="primary" size="default" icon="el-icon-circle-plus" plain @click="handleWarehouse" style="margin-left: 12px;">鍏ュ簱</el-button>
+          <el-button type="primary" size="default" icon="el-icon-circle-plus" plain @click="handleWarehouse"
+            style="margin-left: 12px;">鍏ュ簱</el-button>
         </div>
       </template>
     </avue-crud>
-    <el-dialog title="DNC鏂囦欢瀵煎叆" append-to-body v-model="excelBox" width="555px">
-      <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
+    <el-dialog title="宸ユ帶缃戞枃浠跺鍏�" append-to-body v-model="excelBox" width="555px">
+      <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter" :upload-error="uploadError">
         <!-- <template #excelTemplate>
           <el-button type="primary" @click="handleTemplate">
             鐐瑰嚮涓嬭浇<i class="el-icon-download el-icon--right"></i>
@@ -54,7 +49,7 @@
           //   hide: true
           // },
           {
-            label: '浠诲姟缂栧彿',
+            label: '绋嬪簭缂栧彿',
             prop: 'programNo'
           },
           {
@@ -85,10 +80,10 @@
           //   label: '澶勭悊浜�',
           //   prop: ''
           // },
-          {
-            label: 'MD5鍊�',
-            prop: 'md5',
-          }
+          //{
+          //  label: 'MD5鍊�',
+          //  prop: 'md5',
+          //}
         ],
       },
       data: [],
@@ -118,51 +113,53 @@
     selectionChange(selection) {
       this.selection = selection;
     },
-    importData () {
+    importData() {
       this.excelBox = true;
     },
     uploadAfter(res, done, loading, column) {
-      window.console.log(column);
+      console.log(res, done, loading, column, 2233)
       this.excelBox = false;
-      console.log('data', res);
       this.data = res || []
       done();
     },
-    handleWarehouse(row,index) {
-      if(this.selection.length == 0) {
-        this.$message.error("璇烽�夋嫨鏁版嵁")
-      }else {
-        var selection = [];
-        this.selection.forEach(item=> {
-          selection.push(item.id);
-        })
-        this.loading = true;
-        var obj = {
-          ids: selection.join(","),
-        }
-        axios({
-          url: '/blade-mdm/program/dncsendback/accept',
-          method: 'post',
-          params: obj,
-        }).then(
-          res => {
-            console.log(res);
-            if (res.data.code === 200) {
-              this.$message.success("鎿嶄綔鎴愬姛");
-              this.loading = false;
-              this.data = []
-            } else {
-              this.$message.success(res.data.msg || "鎿嶄綔澶辫触");
-            }
-            
-          }
-        );
-      }
+    uploadError(error, column) {
+
     },
+    handleWarehouse() {
+      // if (this.selection.length == 0) {
+      //   return this.$message.error("璇烽�夋嫨鏁版嵁")
+      // }
+      let selection = [];
+      this.selection.forEach(item => {
+        selection.push(item.id);
+      })
+      this.loading = true;
+      var obj = {
+        ids: selection.join(","),
+      }
+      axios({
+        url: '/blade-mdm/program/dncsendback/accept',
+        method: 'post',
+        params: obj,
+      }).then(
+        res => {
+          console.log(res);
+          if (res.data.code === 200) {
+            this.$message.success("鎿嶄綔鎴愬姛");
+            this.loading = false;
+            this.data = []
+          } else {
+            this.$message.error(res.data.msg || "鎿嶄綔澶辫触");
+            this.loading = false;
+          }
+
+        }
+      ).finally(() => {
+        this.loading = false;
+      });
+    }
   },
 };
 </script>
 
-<style lang="scss">
-
-</style>
\ No newline at end of file
+<style lang="scss"></style>
\ No newline at end of file

--
Gitblit v1.9.3