Commit b16e93a8 authored by xinzhedeai's avatar xinzhedeai

fix: 巡检计划 导出问题处理

parent a5a0b31c
...@@ -368,23 +368,29 @@ export default { ...@@ -368,23 +368,29 @@ export default {
}) })
.catch(() => {}); .catch(() => {});
}, },
/** 导出按钮操作 */
exportExcl() { exportExcl() {
exportModel().then((res) => { this.download('slope/plan/export/model', {
this.$modal }, `checkplan_${new Date().getTime()}.xlsx`)
.confirm("是否确认导出?")
.then(function () {
return window.open(
`${this.$store.getters.appPicApi}/excel/${res.msg}`,
"_blank"
);
})
.then(() => {
this.$modal.msgSuccess("导出成功");
})
.catch(() => {});
});
}, },
// exportExcl() {
// exportModel().then((res) => {
// this.$modal
// .confirm("是否确认导出?")
// .then(function () {
// return window.open(
// `${this.$store.getters.appPicApi}/excel/${res.msg}`,
// "_blank"
// );
// })
// .then(() => {
// this.$modal.msgSuccess("导出成功");
// })
// .catch(() => {});
// });
// },
onChange(e) { onChange(e) {
this.formData = new FormData(); this.formData = new FormData();
this.formData.append("file", e.raw); this.formData.append("file", e.raw);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment