From 726272da651bdff1904483bd6705918874dfafc5 Mon Sep 17 00:00:00 2001 From: YUJT Date: Sat, 23 Apr 2022 11:08:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E6=8F=90=E4=BA=A4=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/plugins/power/poweraxis-add-or-update.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/modules/plugins/power/poweraxis-add-or-update.vue b/src/views/modules/plugins/power/poweraxis-add-or-update.vue index 8aa947dc..6419a28d 100644 --- a/src/views/modules/plugins/power/poweraxis-add-or-update.vue +++ b/src/views/modules/plugins/power/poweraxis-add-or-update.vue @@ -458,7 +458,7 @@ export default { // 修改 async submitModifyOrg(){ this.dataForm.agencyId = this.dataForm.orgId[this.dataForm.orgId.length - 1] - const url = '/pli/power/axisStruct/modifyOrg' + const url = '/pli/power/axisStruct/update' const { data, code, msg } = await requestPost(url,this.dataForm) if (code === 0) { this.$message({ @@ -476,7 +476,7 @@ export default { }, // 新增 async submitAddNewOrg(){ - const url = '/pli/power/axisStruct/addOrg' + const url = '/pli/power/axisStruct/save' this.dataForm.agencyId = this.dataForm.orgId[this.dataForm.orgId.length - 1] const { data, code, msg } = await requestPost(url,this.dataForm) if (code === 0) {