mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 22:36:43 +08:00
fix(saleFlowProImprove): 修复投保信息页面图片上传逻辑
- 移除多余的 idImage 显示 - 修复 nextStep 调用参数传递问题 - 注释掉不必要的 msgUpdate 触发逻辑 - 调整函数调用参数顺序以匹配接口定义
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
<van-field v-model="insureInfo.orderNo" label="投保单号" name="投保单号" placeholder="请输入" readonly />
|
<van-field v-model="insureInfo.orderNo" label="投保单号" name="投保单号" placeholder="请输入" readonly />
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
<van-cell-group class="mt10">
|
<van-cell-group class="mt10">
|
||||||
|
{{ idImage }}
|
||||||
<!-- 图片上传或者 ocr 识别区域 -->
|
<!-- 图片上传或者 ocr 识别区域 -->
|
||||||
<!-- 根据不同的证件类型切换到不同的组件 -->
|
<!-- 根据不同的证件类型切换到不同的组件 -->
|
||||||
<template v-if="uploadComponentInfo">
|
<template v-if="uploadComponentInfo">
|
||||||
@@ -1945,8 +1946,9 @@ export default {
|
|||||||
taskID,
|
taskID,
|
||||||
() => {
|
() => {
|
||||||
return this.nextStep()
|
return this.nextStep()
|
||||||
}
|
},
|
||||||
// ['saveApplicant_uploadImage']
|
[],
|
||||||
|
['saveApplicant_uploadImage']
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2098,6 +2098,7 @@ export default {
|
|||||||
() => {
|
() => {
|
||||||
this.nextStep()
|
this.nextStep()
|
||||||
},
|
},
|
||||||
|
[],
|
||||||
['saveInsured_uploadImage']
|
['saveInsured_uploadImage']
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -2184,7 +2185,7 @@ export default {
|
|||||||
if (!(await this.$validator.validate())) return
|
if (!(await this.$validator.validate())) return
|
||||||
const includesProperties = ['sex', 'birthday', 'medical']
|
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: {
|
applicant: {
|
||||||
|
|||||||
Reference in New Issue
Block a user