feat(saleFlowProImprove): 替换照片扫描组件为身份卡扫描- 将 InsuredInfo.vue 中的照片扫描组件替换为 identityCardScan

- 将 InsuredPerson.vue 中的照片扫描组件替换为 identityCardScan- 统一设置 showIDInfo 属性为 false- 保留原有的 getScanInfo事件处理逻辑
This commit is contained in:
陈昱达
2025-11-17 20:44:03 +08:00
parent 116a52694e
commit db14ff90b6
2 changed files with 2 additions and 2 deletions

View File

@@ -1880,7 +1880,7 @@ export default {
const PhotoScanner = () => import('./components/PhotoScanner.vue') const PhotoScanner = () => import('./components/PhotoScanner.vue')
const components = new Array() const components = new Array()
components[1] = { components[1] = {
component: PhotoScanner, component: 'identityCardScan',
props: { options: { showIDInfo: false } }, props: { options: { showIDInfo: false } },
event: { getScanInfo: this.getIdentityInfo } event: { getScanInfo: this.getIdentityInfo }
} }

View File

@@ -2047,7 +2047,7 @@ export default {
const PhotoScanner = ()=> import('./components/PhotoScanner.vue') const PhotoScanner = ()=> import('./components/PhotoScanner.vue')
const components = new Array() const components = new Array()
components[1] = { components[1] = {
component: PhotoScanner, component: 'identityCardScan',
props: { options: { showIDInfo: false } }, props: { options: { showIDInfo: false } },
event: { getScanInfo: this.getIdentityInfo } event: { getScanInfo: this.getIdentityInfo }
} }