zj
2024-06-03 561ca040085b6fd6766e471a70b4a3c682deadc2
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
<template>
    <!-- 已认证 -->
    <div class="verified">
        <van-nav-bar :title="$t('身份认证')" left-arrow @click-left="onClickLeft" />
        <div class="flex flex-col px-30 justify-center items-center pt-124">
            <img src="../../assets/image/assets-center/small-success.png" alt="success img" class="w-122 h-122" />
            <div class="font-55 textColor mt-55">{{ $t('提交成功') }}</div>
            <div class="font-26 text-grey mt-23">{{ $t('您的资料已经成功上传!') }}</div>
            <div class="font-26 text-grey mt-20">{{ $t('系统将在三个工作日内审核完毕,请您耐心等候。') }}</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('返回') }}</button>
        </div>
    </div>
</template>
 
<script>
export default {
    name: "verified",
    data() {
        return {
 
        }
    },
    created() {
 
    },
    methods: {
        onClickLeft() {
            this.$router.go(-1);
        },
    }
}
</script>
<style lang="scss" scoped>
.verified {
    width: 100%;
    box-sizing: border-box;
 
    ::v-deep .van-hairline--bottom::after {
        @include themify() {
            border-color: themed("border_color");
        }
    }
}
</style>