fix(saleFlowProImprove): 修复投保信息页面图片上传逻辑

- 移除多余的 idImage 显示
- 修复 nextStep 调用参数传递问题
- 注释掉不必要的 msgUpdate 触发逻辑
- 调整函数调用参数顺序以匹配接口定义
This commit is contained in:
hz
2025-11-26 20:06:54 +08:00
parent dd3113830b
commit 87183b4975
2 changed files with 6 additions and 3 deletions

View File

@@ -18,6 +18,7 @@
<van-field v-model="insureInfo.orderNo" label="投保单号" name="投保单号" placeholder="请输入" readonly />
</van-cell-group>
<van-cell-group class="mt10">
{{ idImage }}
<!-- 图片上传或者 ocr 识别区域 -->
<!-- 根据不同的证件类型切换到不同的组件 -->
<template v-if="uploadComponentInfo">
@@ -1945,8 +1946,9 @@ export default {
taskID,
() => {
return this.nextStep()
}
// ['saveApplicant_uploadImage']
},
[],
['saveApplicant_uploadImage']
)
}
},

View File

@@ -2098,6 +2098,7 @@ export default {
() => {
this.nextStep()
},
[],
['saveInsured_uploadImage']
)
}
@@ -2184,7 +2185,7 @@ export default {
if (!(await this.$validator.validate())) return
const includesProperties = ['sex', 'birthday', 'medical']
if (includesProperties.some(property => userInfo[property] !== oldUserInfo[property])) this.$emit('msgUpdate')
// if (includesProperties.some(property => userInfo[property] !== oldUserInfo[property])) this.$emit('msgUpdate')
}
},
applicant: {