解决往来信息导出模块点击“结果全部导出”后数据量不一致问题。

prod
schry 2 years ago
parent 7bba144dc2
commit d959933ea3

@ -215,7 +215,9 @@ import {
this.loading = false; this.loading = false;
this.getSystemParamConfig(); this.getSystemParamConfig();
this.list = response.data.list || []; this.list = response.data.list || [];
console.log(this.list)
this.total = response.data.total || 0; this.total = response.data.total || 0;
console.log(this.total)
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -353,14 +355,40 @@ import {
}, },
selectExport() { selectExport() {
/* var selectData = this.multipleSelection; var selectData = this.multipleSelection;
selectData.forEach((obj) => { selectData.forEach((obj) => {
this.query.ids.push(obj.id); this.query.ids.push(obj.id);
});*/ });
this.allExport(); exportExcel(this.query)
.then((response) => {
if (response.code == 20000) {
this.$message({
type: "success",
message: "导出成功后台正在生成Json文件请稍后刷新查看",
});
} else {
this.$message({
type: "error",
message: response.message,
});
}
this.$emit("cancelDialog", true);
})
.catch(() => {
this.$message({
type: "error",
message: "上传失败",
});
});
}, },
allExport() { allExport() {
var selectData = this.multipleSelection; this.query.limit = this.total;
getBasicUnitMaintains(this.query)
.then((response) => {
this.list = response.data.list || [];
console.log(this.list)
this.total = response.data.total || 0;
var selectData = this.list;
selectData.forEach((obj) => { selectData.forEach((obj) => {
this.query.ids.push(obj.id); this.query.ids.push(obj.id);
}); });
@ -385,6 +413,12 @@ import {
message: "上传失败", message: "上传失败",
}); });
}); });
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}, },
uploadSMP() { uploadSMP() {
@ -493,6 +527,7 @@ import {
created() { created() {
this.getList(); this.getList();
this.getBasicThirdSys(); this.getBasicThirdSys();
} }
, ,
} }

Loading…
Cancel
Save