refactor(xumu): 解除 AppInsuranceAudit 页面的代码注释

- 移除了 handleAudit 方法中对 API 提交逻辑的注释
- 恢复了代码的原始功能,允许用户提交保险审核申请
This commit is contained in:
aixianling
2025-01-17 10:11:21 +08:00
parent 1ead1b2e9a
commit d46bb82086

View File

@@ -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) {