From f6f1d3c0c5738bd823e02272629711d0ee2eb32d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Thu, 20 Apr 2023 15:20:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8B=E8=BD=BD=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept/authDept.vue | 1 - src/views/thirdSys/corps/thrCorpsExport.vue | 5 ++--- src/views/thirdSys/corps/thrCorpsExportSmp.vue | 5 ++--- src/views/thirdSys/invProducts/thrInvProductsExport.vue | 9 +++------ src/views/thirdSys/order/thrOrderExport.vue | 5 ++--- src/views/thirdSys/product/thrProductsExport.vue | 1 - 6 files changed, 9 insertions(+), 17 deletions(-) diff --git a/src/views/system/dept/authDept.vue b/src/views/system/dept/authDept.vue index 46f51c6..2eab3b8 100644 --- a/src/views/system/dept/authDept.vue +++ b/src/views/system/dept/authDept.vue @@ -601,7 +601,6 @@ export default { }); }, cancelDialog() { - tQuer; this.formVisible = false; // 刷新表单 this.$refs["dataForm"].resetFields(); diff --git a/src/views/thirdSys/corps/thrCorpsExport.vue b/src/views/thirdSys/corps/thrCorpsExport.vue index 421f914..e5c3e24 100644 --- a/src/views/thirdSys/corps/thrCorpsExport.vue +++ b/src/views/thirdSys/corps/thrCorpsExport.vue @@ -71,6 +71,7 @@ import {formatDate} from "@/utils/date"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -154,8 +155,7 @@ export default { this.thrCorpSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); @@ -170,7 +170,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/corps/thrCorpsExportSmp.vue b/src/views/thirdSys/corps/thrCorpsExportSmp.vue index 02398d7..69950a0 100644 --- a/src/views/thirdSys/corps/thrCorpsExportSmp.vue +++ b/src/views/thirdSys/corps/thrCorpsExportSmp.vue @@ -68,6 +68,7 @@ import axios from "axios"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -153,8 +154,7 @@ export default { this.thrCorpSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/thrCorp/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); @@ -171,7 +171,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/invProducts/thrInvProductsExport.vue b/src/views/thirdSys/invProducts/thrInvProductsExport.vue index 8958620..4d5d91f 100644 --- a/src/views/thirdSys/invProducts/thrInvProductsExport.vue +++ b/src/views/thirdSys/invProducts/thrInvProductsExport.vue @@ -108,6 +108,7 @@ import axios from "axios"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { genKey: null, @@ -191,8 +192,8 @@ export default { this.thrInvProductsSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + + let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/invProducts/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); fetch(href) @@ -208,10 +209,6 @@ export default { a.click(); this.getList(); }); - - }); - - }, cancelDialog(val) { diff --git a/src/views/thirdSys/order/thrOrderExport.vue b/src/views/thirdSys/order/thrOrderExport.vue index 24b01ed..68f266c 100644 --- a/src/views/thirdSys/order/thrOrderExport.vue +++ b/src/views/thirdSys/order/thrOrderExport.vue @@ -75,6 +75,7 @@ import {formatDate} from "@/utils/date"; export default { data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, showSearch: true, filterQuery: { type: 1, @@ -158,8 +159,7 @@ export default { this.thrOrderSelectVisible = true; }, downloadExcel(row) { - axios.get("./config.json").then(res => { - let baseUrl = res.data.BASE_URL; + let baseUrl = this.BASE_URL let href = baseUrl + "/udiwms/thrOrder/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a"); var timestamp = formatDate(new Date(), "yyyyMMddhhmmss") @@ -173,7 +173,6 @@ export default { a.click(); this.getList(); }); - }); }, cancelDialog(val) { diff --git a/src/views/thirdSys/product/thrProductsExport.vue b/src/views/thirdSys/product/thrProductsExport.vue index bcf1ca7..5d0be0c 100644 --- a/src/views/thirdSys/product/thrProductsExport.vue +++ b/src/views/thirdSys/product/thrProductsExport.vue @@ -159,7 +159,6 @@ export default { this.thrProductsSelectVisible = true; }, downloadExcel(row) { - debugger let baseUrl = this.BASE_URL; let href = baseUrl + "/udiwms/thrProducts/exportLog/download" + "?genKey=" + row.genKey; let a = document.createElement("a");