|
|
@@ -52,7 +52,7 @@ const componentMap = new Map<string, unknown>([
|
|
|
['certification-aq', defineAsyncComponent(() => import('./components/certification-aq/index.vue'))], // 实名认证
|
|
|
])
|
|
|
|
|
|
-const authStatus = shallowRef(AuthStatus.Uncertified) // 实名认证状态
|
|
|
+const authStatus = shallowRef(AuthStatus.Certified) // 实名认证状态
|
|
|
const signStatus = shallowRef(SignStatus.Unsigned)
|
|
|
|
|
|
const { rowKey, expandKeys, rowClick, selectedRow } = useComposeTable<Model.BankAccountSignRsp>({ rowKey: 'applyexchticket' })
|
|
|
@@ -82,12 +82,10 @@ const tableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
])
|
|
|
|
|
|
onMounted(() => {
|
|
|
- if (authStatus.value !== AuthStatus.Certified) {
|
|
|
- // 获取用户账号信息
|
|
|
- queryUserAccount().then((res) => {
|
|
|
- authStatus.value = res.data.hasauth
|
|
|
- })
|
|
|
- }
|
|
|
+ // 获取用户账号信息
|
|
|
+ queryUserAccount().then((res) => {
|
|
|
+ authStatus.value = res.data.hasauth
|
|
|
+ })
|
|
|
})
|
|
|
|
|
|
</script>
|