lxf
2025-07-16 8588fe30f17d0d28190a279aab8675de0dbf1a5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
    <!-- 已认证 -->
    <div class="verified">
        <fx-header @back="loginOut">
            <template #title>
                {{ $t('authVerify') }}
            </template>
        </fx-header>
        <div class="flex flex-col px-30 justify-center items-center pt-124">
            <img src="../../assets/image/idImg/small-success.png" alt="success img" class="w-20 h-20 mt-10" />
            <div class="font16 textColor mt-55">{{ $t('submitSuccess') }}</div>
            <div class="font14 text-grey mt-23">{{ $t('tips3') }}</div>
            <div class="font14 text-grey ">{{ $t('tips4') }}</div>
            <button class="apply-btn w-full border-none rounded btnMain text-white font-35 h-100 rounded mt-193"
                @click="$router.go(-1)">{{ $t('back') }}</button>
        </div>
    </div>
</template>
 
<script setup>
import { useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
const { t } = useI18n()
const router = useRouter()
const loginOut = () => {
    router.push('/certificationCenter')
}
</script>
<style lang="scss" scoped>
.verified {
    width: 100%;
    box-sizing: border-box;
 
}
 
.font16 {
    font-size: 16px;
}
 
.font14 {
    font-size: 14px;
}
 
.textColor {
    margin-top: 3rem;
    font-size: 16px;
}
 
.text-grey {
    margin: 1rem 0 0 0;
}
 
.btnMain {
    background: $btn_background;
    margin-top: 40px;
    width: 90%;
    height: 45px;
    line-height: 45px;
    text-align: center;
}
</style>