|
|
@@ -46,7 +46,7 @@
|
|
|
:label="$t('user.authentication.modifyremark')" />
|
|
|
</CellGroup>
|
|
|
</Form>
|
|
|
- <img src="../../../assets/images/certification.png" />
|
|
|
+ <img v-if="oem != 'tss'" src="../../../assets/images/certification.png" />
|
|
|
<template #footer>
|
|
|
<div class="g-form__footer inset">
|
|
|
<Button type="danger" @click="formRef?.submit" round block>{{ $t('user.authentication.submit')
|
|
|
@@ -71,6 +71,7 @@ import { useQueryCusBankSignBank } from '@/business/bank'
|
|
|
import { i18n } from '@/stores'
|
|
|
import AppUploader from '@mobile/components/base/uploader/index.vue'
|
|
|
import AppSelect from '@mobile/components/base/select/index.vue'
|
|
|
+import service from '@/services'
|
|
|
|
|
|
const formRef = shallowRef<FormInstance>()
|
|
|
const { formData, formSubmit, modifyremark } = addAuthReq()
|
|
|
@@ -81,6 +82,8 @@ const showHalfBodyPhoto = shallowRef('0')
|
|
|
const showCardBackPhoto = shallowRef('0')
|
|
|
const halfBodyPhotoTitle = shallowRef(t('user.authentication.halfbodyphoto'))
|
|
|
|
|
|
+const oem = service.getConfig('oem')
|
|
|
+
|
|
|
const { banklist } = useQueryCusBankSignBank()
|
|
|
|
|
|
// 获取网上开户配置
|