|
|
@@ -68,11 +68,17 @@
|
|
|
:label="$t('user.authentication.modifyremark')" />
|
|
|
</CellGroup>
|
|
|
</Form>
|
|
|
- <!-- <img v-if="oem != 'tss'" src="../../../assets/images/certification.png" /> -->
|
|
|
+ <div class="account-certification__example" v-if="showExample">
|
|
|
+ <fieldset>
|
|
|
+ <legend>拍摄示例</legend>
|
|
|
+ <img :src="exampleImage" />
|
|
|
+ </fieldset>
|
|
|
+ </div>
|
|
|
<template #footer>
|
|
|
<div class="g-form__footer inset">
|
|
|
- <Button type="danger" @click="formRef?.submit" round block>{{ $t('user.authentication.submit')
|
|
|
- }}</Button>
|
|
|
+ <Button type="danger" @click="formRef?.submit" round block>
|
|
|
+ {{ $t('user.authentication.submit') }}
|
|
|
+ </Button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</app-view>
|
|
|
@@ -85,8 +91,6 @@ import { addAuthReq } from '@/business/user'
|
|
|
import { fullloading, dialog } from '@/utils/vant'
|
|
|
import { getCerTypePersonList } from "@/constants/account"
|
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
|
-import { getIdCardAge } from '@/filters'
|
|
|
-import { validateRules } from '@/constants/regex'
|
|
|
import { useRequest } from '@/hooks/request'
|
|
|
import { getWskhOpenAccountConfigs } from '@/services/api/account'
|
|
|
import { useQueryCusBankSignBank } from '@/business/bank'
|
|
|
@@ -94,7 +98,18 @@ import { getCountryCodeList } from '@/constants/unit'
|
|
|
import { i18n, useUserStore } from '@/stores'
|
|
|
import AppUploader from '@mobile/components/base/uploader/index.vue'
|
|
|
import AppSelect from '@mobile/components/base/select/index.vue'
|
|
|
-import service from '@/services'
|
|
|
+import certification from '../../../assets/images/certification.png'
|
|
|
+
|
|
|
+defineProps({
|
|
|
+ showExample: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
+ },
|
|
|
+ exampleImage: {
|
|
|
+ type: String,
|
|
|
+ default: certification
|
|
|
+ },
|
|
|
+})
|
|
|
|
|
|
const formRef = shallowRef<FormInstance>()
|
|
|
const { formData, formSubmit, modifyremark } = addAuthReq()
|
|
|
@@ -117,8 +132,6 @@ const showHalfBodyPhoto = shallowRef('0')
|
|
|
const showCardBackPhoto = shallowRef('0')
|
|
|
const halfBodyPhotoTitle = shallowRef(t('user.authentication.halfbodyphoto'))
|
|
|
|
|
|
-const oem = service.getConfig('oem')
|
|
|
-
|
|
|
const { banklist } = useQueryCusBankSignBank()
|
|
|
|
|
|
const onCancel = () => {
|
|
|
@@ -227,4 +240,8 @@ const onSubmit = () => {
|
|
|
onMounted(() => {
|
|
|
formData.mobilephone = userStore.userInfo.mobile2
|
|
|
})
|
|
|
-</script>
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="less">
|
|
|
+@import './index.less';
|
|
|
+</style>
|