2
0

feat:证件类型中英文修复

This commit is contained in:
zhongzm
2025-02-07 15:07:56 +08:00
parent ceef70fdb2
commit a791720536

View File

@@ -21,14 +21,14 @@ const kycInfo = ref<Partial<Api.KYC.KYCInfo>>({
});
// 证件类型选项
const idTypeOptions = [
const idTypeOptions = computed(()=>[
{ value: 1, label: t('page.kyc.drive') },
{ value: 2, label: t('page.kyc.pass') },
{ value: 3, label: t('page.kyc.idcard') },
{ value: 4, label: t('page.kyc.stu') },
{ value: 5, label: t('page.kyc.health') },
{ value: 6, label: t('page.kyc.birth') }
];
]);
// 表单数据
interface FormData {