1
PC-20250623MANY\Administrator
2025-07-22 9ec3bd6e8d7357927533d8966f882cb5d28b3e0f
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<template>
    <div class="resetSuccess">
        <assets-head :title="title" :goPerpetualContract="goHome" />
        <div class="content">
            <div class="imgBox"><img src="@/assets/image/success.png" alt=""></div>
            <div class="textColor mt-24 font-700 font-54">{{ $t('提交成功') }}</div>
            <div class="text-grey mt-12">{{ $t('您的资料已成功上传') }}!</div>
            <div class="text-grey mt-88">{{ $t('系统将在三个工作日内审核完毕,请您耐心等候。') }}</div>
            <div class="btn mt-54" @click="$router.push('/')">{{ $t('返回') }}</div>
        </div>
    </div>
</template>
 
<script>
import assetsHead from "@/components/assets-head";
export default {
    props: {
 
    },
    components: {
        assetsHead
    },
    data() {
        return {
            title: '',
            goHome: true
        }
    },
    mounted() {
        let type = this.$route.query.type;
        this.init(type);
    },
    methods: {
        init(type) {
            if (type == 1) {
                this.title = this.$t("重置手机号");
            } else if (type == 2) {
                this.title = this.$t("重置邮箱");
            } else if (type == 3) {
                this.title = this.$t("重置谷歌验证");
            } else {
                this.title = this.$t("重置资金密码");
            }
        },
    }
}
</script>
 
<style lang="scss" scoped>
.resetSuccess {
    width: 100%;
    box-sizing: border-box;
}
 
.content {
    font-size: 24px;
    padding: 32px;
    text-align: center;
}
 
.imgBox {
    width: 122px;
    height: 122px;
    margin: auto;
 
    img {
        width: 100%;
        height: 100%;
    }
}
 
.btn {
    @include themify() {
        background: themed("btn_main");
    }
 
    color: #fff;
    height: 88px;
    line-height: 88px;
    text-align: center;
    font-size: 32px;
    border-radius: 10px;
}
</style>