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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<template>
    <div class="finish">
        <Step :step="4"></Step>
        <div class="title textColor">{{ $t('registerSuccess') }}</div>
        <p class="mt-8 pl-9">
            <i @click="agreeInfo">
                <img v-show="agree1" src="../../assets/image/login/prot2.png" alt="" />
                <img v-show="!agree1" src="../../assets/image/login/prot1.png" alt="" />
            </i>
            {{ $t('agreeNoticeCompet') }}
        </p>
        <p class="mt-6 pl-9">
            <i @click="agreeAddress">
                <img v-show="agree2" src="../../assets/image/login/prot2.png" alt="" />
                <img v-show="!agree2" src="../../assets/image/login/prot1.png" alt="" />
            </i>
            {{ $t('agreeAdderssCompet') }}
        </p>
        <!-- <div class="content mt-4" @click="$router.push('/exchange/channel-in')"> -->
        <div class="content mt-4" @click="$router.push('/customerService')">
            <div class="left">
                <div class="text-40">{{ $t('wangtRecharge') }}</div>
                <div class="text-32 mt-7">{{ $t('torecharge') }}<img src="../../assets/image/login/Vector.png" alt="" />
                </div>
            </div>
            <div class="right pic2">
                <img src="./img/rechargePic.png" alt="">
            </div>
        </div>
        <van-button class="w-full" style="margin-top:10px;" type="primary" @click="$router.push('/quotes/index')">{{
            $t('sure')
        }}</van-button>
    </div>
</template>
 
<script setup>
import Step from "./step.vue";
import { ref } from 'vue';
const agree1 = ref(true)
const agree2 = ref(true)
 
const agreeInfo = () => {
    agree1.value = !agree1.value
}
 
const agreeAddress = () => {
    agree2.value = !agree2.value
}
 
</script>
 
<style lang="scss" scoped>
.finish {
    padding: 16px;
    font-size: 13px;
    width: 100%;
    box-sizing: border-box;
}
 
.title {
    font-weight: 700;
    font-size: 26px;
    margin-top: 33px;
    text-align: center;
}
 
.title1 {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    margin-top: 22px;
}
 
p {
    display: flex;
    align-items: center;
    color: $text_color1;
 
    i {
        display: block;
        margin-right: 9px;
        box-sizing: border-box;
 
        img {
            width: 15px;
            height: 15px;
        }
    }
}
 
.content {
    background: $selectSymbol_background;
    border-radius: 4px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    height: 110px;
    align-items: center;
    color: $text_color;
 
    .left {
        img {
            width: 11px;
            height: 11px;
            margin-left: 6px;
        }
    }
 
    .pic1 {
        width: 70px;
        height: 76px;
 
        img {
            width: 100%;
            height: 100%;
        }
    }
 
    .pic2 {
        width: 76px;
        height: 66px;
 
        img {
            width: 100%;
            height: 100%;
        }
    }
}
</style>