From b1d31708daa17f49acccc7852ab5f1b27e6bcadf Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 31 Aug 2022 17:29:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=A5=E5=8F=A3=E4=BB=A3?= =?UTF-8?q?=E7=90=86=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue | 2 +- project/xiushan/apps/AppVideoPublic/vpList.vue | 2 +- project/xiushan/apps/finance/AppFinanceProduct/productList.vue | 2 +- .../xiushan/apps/finance/AppGuaranteeProduct/productList.vue | 2 +- .../approvalManage/components/approvalDetail.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue b/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue index f976c9f8..07b4045e 100644 --- a/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue +++ b/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue @@ -103,7 +103,7 @@ export default { this.dialog = true }, getClassTypeList() { - this.instance.post("/zwspapprovalclassification/list?size=100").then(res => { + this.instance.post("/api/zwspapprovalclassification/list?size=100").then(res => { if (res?.data) { res.data.records.map((item) => { item.dictName = item.name diff --git a/project/xiushan/apps/AppVideoPublic/vpList.vue b/project/xiushan/apps/AppVideoPublic/vpList.vue index 9c94cee7..83b43b17 100644 --- a/project/xiushan/apps/AppVideoPublic/vpList.vue +++ b/project/xiushan/apps/AppVideoPublic/vpList.vue @@ -90,7 +90,7 @@ export default { }, handleIsHot(row) { let {id, isHot} = row - this.instance.post("appfinancialproduct/setIsHot", null, { + this.instance.post("/api/appfinancialproduct/setIsHot", null, { params: {id, isHot} }).then(res => { if (res?.code == 0) { diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue index f7833770..c1416cae 100644 --- a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue +++ b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue @@ -131,7 +131,7 @@ export default { }, handleIsHot(row) { let {id, isHot} = row - this.instance.post("appfinancialproduct/setIsHot", null, { + this.instance.post("/api/appfinancialproduct/setIsHot", null, { params: {id, isHot} }).then(res => { if (res?.code == 0) { diff --git a/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue b/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue index ee5594fa..d348f9f4 100644 --- a/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue +++ b/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue @@ -112,7 +112,7 @@ export default { }, handleIsHot(row) { let {id, isHot} = row - this.instance.post("appfinancialproduct/setIsHot", null, { + this.instance.post("/api/appfinancialproduct/setIsHot", null, { params: {id, isHot} }).then(res => { if (res?.code == 0) { diff --git a/project/xiushan/apps/processManagement/approvalManage/components/approvalDetail.vue b/project/xiushan/apps/processManagement/approvalManage/components/approvalDetail.vue index af3583fa..3cece814 100644 --- a/project/xiushan/apps/processManagement/approvalManage/components/approvalDetail.vue +++ b/project/xiushan/apps/processManagement/approvalManage/components/approvalDetail.vue @@ -410,7 +410,7 @@ export default { this.$refs["ruleForm1"].validate(valid => { if (valid) { this.form1.id = this.detail.id; - this.instance.post('/oa/approv-alapply-info/approval', this.form1).then(res => { + this.instance.post('/api/oa/approv-alapply-info/approval', this.form1).then(res => { if (res && res.code == 0) { this.$message.success("转办成功"); this.approval.goBack()