From b1bc97edafe1367503a57be94e38070525474593 Mon Sep 17 00:00:00 2001
From: lzhe <181968431@qq.com>
Date: 星期二, 12 八月 2025 21:42:44 +0800
Subject: [PATCH] Merge branch 'master' of http://www.beijingsoft.cn:9090/r/mdmweb
---
src/views/flowmgr/backImport.vue | 84 +++++++++++++++++++----------------------
1 files changed, 39 insertions(+), 45 deletions(-)
diff --git a/src/views/flowmgr/backImport.vue b/src/views/flowmgr/backImport.vue
index 9f0d5fd..b741fd4 100644
--- a/src/views/flowmgr/backImport.vue
+++ b/src/views/flowmgr/backImport.vue
@@ -1,17 +1,12 @@
<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>
@@ -118,52 +113,51 @@
selectionChange(selection) {
this.selection = selection;
},
- importData () {
+ importData() {
this.excelBox = true;
},
uploadAfter(res, done, loading, column) {
- console.log(res, done, loading, column,2233)
+ console.log(res, done, loading, column, 2233)
this.excelBox = false;
this.data = res || []
done();
},
- uploadError(error,column) {
-
+ uploadError(error, column) {
+
},
- handleWarehouse(row,index) {
- if(this.selection.length == 0) {
- this.$message.error("璇烽�夋嫨鏁版嵁")
- 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;
- }
-
- }
- );
+ 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;
+ }
+
+ }
+ );
+ }
},
};
</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