From 7a4e91cad492b5f2411ae3ec074dae533d0ec335 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Thu, 18 Sep 2025 09:57:07 +0800
Subject: [PATCH] 1
---
src/views/authentication/index.vue | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/src/views/authentication/index.vue b/src/views/authentication/index.vue
index dec8bc2..f4bc240 100644
--- a/src/views/authentication/index.vue
+++ b/src/views/authentication/index.vue
@@ -3,7 +3,8 @@
<div style="padding-bottom: 30px" class="font-26 authentication">
<fx-header @back="loginOut">
<template #title>
- {{ $t('primaryCertification') }}
+ <!-- {{ $t('primaryCertification') }} -->
+ {{ $t('realNameVertify') }}
</template>
</fx-header>
<!-- <country-list /> -->
@@ -113,6 +114,7 @@
import countries from "./components/countryList";
import { getCurrentInstance } from 'vue';
import { useI18n } from "vue-i18n";
+import { customerServiceUrl } from '@/config'
const { t } = useI18n()
const router = useRouter()
const countryName = ref(t('selectNation'))
@@ -133,6 +135,7 @@
const language = ref('en')
const controlChild = ref(null)
const { proxy } = getCurrentInstance();
+const customer_service_url = ref(customerServiceUrl) // 客服链接,有值的话就会跳转到客服外链
onMounted(() => {
fetchInfo();
@@ -206,7 +209,7 @@
showToast(t('entryCredent'))
return
}
- if (frontFile.value.length == 0 || reverseFile.value.length == 0|| fileList.value.length == 0) {
+ if (frontFile.value.length == 0 || reverseFile.value.length == 0 || fileList.value.length == 0) {
showToast(t('uploadComplete'))
return
}
@@ -227,14 +230,19 @@
})
}
const tokefu = () => {
- router.push('/customerService')
+ if (customer_service_url.value) {
+ window.location.href = customer_service_url.value;
+ } else {
+ router.push('/customerService')
+ }
}
</script>
<style lang="scss" scoped>
@import '../../assets/css/copy.scss';
@import "@/views/authentication/components/intl.css";
-.box{
+
+.box {
padding: 1.5rem !important;
}
@@ -256,7 +264,7 @@
}
input:disabled {
- background: $mainbgWhiteColor;
+ background: $mainbgWhiteColor;
}
.list-view {
--
Gitblit v1.9.3