From 9d5d3cacf6e5f70dca3f461123ee9a9466c96c79 Mon Sep 17 00:00:00 2001
From: 李喆(开发组) <lzhe@yxqiche.com>
Date: 星期一, 11 八月 2025 16:34:27 +0800
Subject: [PATCH] 1
---
src/views/flowmgr/backImport.vue | 32 ++++++++++++++++++++------------
1 files changed, 20 insertions(+), 12 deletions(-)
diff --git a/src/views/flowmgr/backImport.vue b/src/views/flowmgr/backImport.vue
index 193a6c7..9f0d5fd 100644
--- a/src/views/flowmgr/backImport.vue
+++ b/src/views/flowmgr/backImport.vue
@@ -16,7 +16,7 @@
</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">
+ <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 +54,7 @@
// hide: true
// },
{
- label: '浠诲姟缂栧彿',
+ label: '绋嬪簭缂栧彿',
prop: 'programNo'
},
{
@@ -85,10 +85,10 @@
// label: '澶勭悊浜�',
// prop: ''
// },
- {
- label: 'MD5鍊�',
- prop: 'md5',
- }
+ //{
+ // label: 'MD5鍊�',
+ // prop: 'md5',
+ //}
],
},
data: [],
@@ -122,17 +122,17 @@
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();
+ },
+ uploadError(error,column) {
+
},
handleWarehouse(row,index) {
if(this.selection.length == 0) {
this.$message.error("璇烽�夋嫨鏁版嵁")
- }else {
- var selection = [];
this.selection.forEach(item=> {
selection.push(item.id);
})
@@ -146,8 +146,16 @@
params: obj,
}).then(
res => {
- this.$message.success("鎿嶄綔鎴愬姛");
- this.loading = false;
+ 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;
+ }
+
}
);
}
--
Gitblit v1.9.3