From d46bb820868eb880400f1ef08e43933eb0029c17 Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 17 Jan 2025 10:11:21 +0800 Subject: [PATCH] =?UTF-8?q?refactor(xumu):=20=E8=A7=A3=E9=99=A4=20AppInsur?= =?UTF-8?q?anceAudit=20=E9=A1=B5=E9=9D=A2=E7=9A=84=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 handleAudit 方法中对 API 提交逻辑的注释 - 恢复了代码的原始功能,允许用户提交保险审核申请 --- project/xumu/AppInsuranceAudit/add.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/project/xumu/AppInsuranceAudit/add.vue b/project/xumu/AppInsuranceAudit/add.vue index db5605f1..b90ef26a 100644 --- a/project/xumu/AppInsuranceAudit/add.vue +++ b/project/xumu/AppInsuranceAudit/add.vue @@ -92,12 +92,12 @@ export default { }, handleAudit() { this.$refs.detail.validate().then(() => { - // this.instance.post("/api/insurance/apply/audit", this.detail).then(res => { - // if (res?.code == 0) { - // this.$message.success("提交成功!") - // this.back() - // } - // }) + this.instance.post("/api/insurance/apply/audit", this.detail).then(res => { + if (res?.code == 0) { + this.$message.success("提交成功!") + this.back() + } + }) }) }, getRemoteInfo(userId) {