|
|
@@ -1,4 +1,4 @@
|
|
|
-import { useEnumStore } from '@/stores'
|
|
|
+import { i18n, useEnumStore } from '@/stores'
|
|
|
|
|
|
const { getEnumTypeList, getEnumTypeName, getEnumTypeValue } = useEnumStore()
|
|
|
|
|
|
@@ -27,7 +27,7 @@ export enum AQCertificateType {
|
|
|
export function getAuthStatusList() {
|
|
|
return [
|
|
|
{ label: '未实名', value: AuthStatus.Uncertified },
|
|
|
- { label: '已实名', value: AuthStatus.Certified },
|
|
|
+ { label: i18n.global.t('enum.auth.Certified'), value: AuthStatus.Certified },
|
|
|
{ label: '审核中', value: AuthStatus.Submitted },
|
|
|
{ label: '未通过', value: AuthStatus.Rejected },
|
|
|
]
|