From b93063a2a277b6eefa61e8ccb59861ce2a29e324 Mon Sep 17 00:00:00 2001 From: baoyu <102349094+Bytq@users.noreply.github.com> Date: Thu, 11 Apr 2024 16:34:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BF=E7=AD=96=E5=BE=81=E6=B1=82=E6=84=8F?= =?UTF-8?q?=E8=A7=81=E6=B5=81=E7=A8=8B=20=E5=BE=81=E6=B1=82=E6=84=8F?= =?UTF-8?q?=E8=A7=81=E5=88=97=E8=A1=A8=20=E6=8E=A5=E5=8F=A3=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../policyConsultation/components/solicitationList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue index 0101ad57d..9803bb484 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue @@ -329,7 +329,7 @@ export default { roundButton: false }).then(() => { const deleteIds = this.selectList.map(val => val.id) - this.$http.delete('/api/lawss/activiti/deletePolicitOpinionEOList', { ids: deleteIds }).then(res => { + this.$http.delete('lawss/activiti/deletePolicitOpinionEOList', { ids: deleteIds }).then(res => { if (res.ok) { this.getData() this.resetSelect() @@ -377,7 +377,7 @@ export default { }, addModelForm (row) { if (this.addOrEdit == 'add') { - this.$http.postData('/api/lawss/activiti/insertPolicitOpinionEOList', { row }, { _this: this }, res => { + this.$http.postData('lawss/activiti/insertPolicitOpinionEOList', { row }, { _this: this }, res => { if (res.ok) { this.$message.success('操作成功') }else { @@ -386,7 +386,7 @@ export default { }, e => { }) } else if (this.addOrEdit == 'edit') { - this.$http.postData('/api/lawss/activiti/updatePolicitOpinionEOList', { row }, { _this: this }, res => { + this.$http.postData('lawss/activiti/updatePolicitOpinionEOList', { row }, { _this: this }, res => { if (res.ok) { this.$message.success('操作成功') }else {