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

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,38 +355,70 @@ 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;
selectData.forEach((obj) => { getBasicUnitMaintains(this.query)
this.query.ids.push(obj.id); .then((response) => {
}); this.list = response.data.list || [];
exportExcel(this.query) console.log(this.list)
.then((response) => { this.total = response.data.total || 0;
var selectData = this.list;
selectData.forEach((obj) => {
this.query.ids.push(obj.id);
});
exportExcel(this.query)
.then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.$message({ this.$message({
type: "success", type: "success",
message: "导出成功后台正在生成Json文件请稍后刷新查看", message: "导出成功后台正在生成Json文件请稍后刷新查看",
}); });
} else { } else {
this.$message({ this.$message({
type: "error", type: "error",
message: response.message, message: response.message,
}); });
} }
this.$emit("cancelDialog", true); this.$emit("cancelDialog", true);
}) })
.catch(() => { .catch(() => {
this.$message({ this.$message({
type: "error", type: "error",
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