10.10综合交易所原始源码_移动端
admin
2026-01-06 04d8c6bfd48267c7b2eaccaa03170618d83e4cbd
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
<template>
    <div class="resetSuccess">
        <fx-header :back="false" @back="$router.push('/my/index')">
            <template #title>
                {{ title }}
            </template>
        </fx-header>
        <div class="content">
            <div class="imgBox"><img src="@/assets/image/success.png" alt="" /></div>
            <div class="styleFont">{{ $t('submitSuccess') }}</div>
            <div class="text-grey mt-2">{{ $t('dataUploadedSuccessfully') }}!</div>
            <div class="text-grey mt-11">{{ $t('moderatedTips') }}</div>
            <van-button class="w-full" style="margin-top:10px;" @click="$router.push('/quotes/index')" type="primary">
                {{ $t('back') }}
            </van-button>
        </div>
    </div>
</template>
 
<script setup>
import { ref, onMounted } from "vue";
import { useI18n } from "vue-i18n";
import { useRoute } from "vue-router";
const { t } = useI18n()
const route = useRoute()
 
const title = ref('')
 
onMounted(() => {
    let type = route.query.type;
    init(type);
})
const init = (type) => {
    if (type == 1) {
        title.value = t("resetPhone");
    } else if (type == 2) {
        title.value = t("resetEmail");
    } else if (type == 3) {
        title.value = t("resetGoogleVerify");
    } else {
        title.value = t("resetFundsPassword");
    }
}
</script>
 
<style lang="scss" scoped>
.resetSuccess {
    width: 100%;
    box-sizing: border-box;
}
 
.content {
    font-size: 12px;
    padding: 16px;
    text-align: center;
}
 
.imgBox {
    width: 62px;
    height: 62px;
    margin: auto;
 
    img {
        width: 100%;
        height: 100%;
    }
}
 
.styleFont {
    margin-top: 24px;
    font-weight: 700;
    font-size: 28px;
}
</style>