feat(realAuth): 移除实名认证中的身份证选项

- 从认证方式列表中删除了身份证选项
- 保留了护照和其他证件选项
This commit is contained in:
xingyy 2025-03-03 21:25:28 +08:00
parent 904ed68377
commit da4a2c509c

View File

@ -18,7 +18,6 @@ const {userInfo,selectedZone}= authStore()
const active=ref(locale.value==='zh-CN'?0:1) const active=ref(locale.value==='zh-CN'?0:1)
const { t } = useI18n() const { t } = useI18n()
const columns1 = ref([ const columns1 = ref([
{text: t('realAuth.idCard'), value: '1'},
{text: t('realAuth.passport'), value: '2'}, {text: t('realAuth.passport'), value: '2'},
{text: t('realAuth.other'), value: '3'}, {text: t('realAuth.other'), value: '3'},
]) ])