|
@@ -72,7 +72,7 @@ const { formData, formSubmit, loading } = addAuthReq()
|
|
|
|
|
|
|
|
const showHalfBodyPhoto = shallowRef('0')
|
|
const showHalfBodyPhoto = shallowRef('0')
|
|
|
const showCardBackPhoto = shallowRef('0')
|
|
const showCardBackPhoto = shallowRef('0')
|
|
|
-const halfBodyPhotoTitle = shallowRef(t('user.authentication.halfbodyphoto'))
|
|
|
|
|
|
|
+const halfBodyPhotoTitle = shallowRef('手持证件照')
|
|
|
|
|
|
|
|
// 获取网上开户配置
|
|
// 获取网上开户配置
|
|
|
useRequest(getWskhOpenAccountConfigs, {
|
|
useRequest(getWskhOpenAccountConfigs, {
|
|
@@ -83,7 +83,7 @@ useRequest(getWskhOpenAccountConfigs, {
|
|
|
/// 是否显示半身照和 证件背面照
|
|
/// 是否显示半身照和 证件背面照
|
|
|
showCardBackPhoto.value = res.data.filter(e => e.configid === 53)[0].configvalue ?? '0'
|
|
showCardBackPhoto.value = res.data.filter(e => e.configid === 53)[0].configvalue ?? '0'
|
|
|
showHalfBodyPhoto.value = res.data.filter(e => e.configid === 54)[0].configvalue ?? '0'
|
|
showHalfBodyPhoto.value = res.data.filter(e => e.configid === 54)[0].configvalue ?? '0'
|
|
|
- halfBodyPhotoTitle.value = res.data.filter(e => e.configid === 78)[0].configvalue ?? t('user.authentication.halfbodyphoto')
|
|
|
|
|
|
|
+ halfBodyPhotoTitle.value = res.data.filter(e => e.configid === 78)[0].configvalue ?? '手持证件照'
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
|
|
|