1
李凌
2025-09-18 7a4e91cad492b5f2411ae3ec074dae533d0ec335
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 {