Commit aab20dfd authored by xinzhedeai's avatar xinzhedeai

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

parent 2d3408c6
...@@ -370,21 +370,25 @@ export default { ...@@ -370,21 +370,25 @@ export default {
}, },
exportExcl() { exportExcl() {
exportModel().then((res) => { this.download('slope/plan/export/model', {
this.$modal }, `巡检计划导入模板.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);
......
...@@ -36,9 +36,8 @@ module.exports = { ...@@ -36,9 +36,8 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
// target: `http://182.92.170.89:10086`, target: `http://182.92.170.89:10086`, // 服务器
target: `http://192.168.2.16:10080`, // target: `http://192.168.2.16:10080`, // 张涛
// target: `http://60.212.188.152:12000`,//服务器
// target: `http://localhost:8080`,//服务器 // target: `http://localhost:8080`,//服务器
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
......
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