Commit b16e93a8 authored by xinzhedeai's avatar xinzhedeai

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

parent a5a0b31c
......@@ -368,23 +368,29 @@ export default {
})
.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(() => {});
});
this.download('slope/plan/export/model', {
}, `checkplan_${new Date().getTime()}.xlsx`)
},
// 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) {
this.formData = new FormData();
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