zzzz
2024-04-18 90dcbbc06eb2dce7d6fd6a7923f149f1f35c9361
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<template>
    <div class="gooleVerify">
        <div class="header">
            <div @click="$router.go(-1)"><img src="../../assets/image/assets-center/left-arrow.png" alt=""
                    class="w-14 h-27" /></div>
            <div class="textColor" @click="$router.push('/finish')">{{ $t('跳过') }}</div>
        </div>
        <Step :step="3"></Step>
        <div class="title textColor">{{ $t('安全绑定') }}</div>
        <div class="pl-30 pr-30 text-center flex flex-col items-center justify-center mt40">
            <div class="imgbox">
                <canvas id="QRcodeCanvas" v-show="!imgshow"></canvas>
                <img :src="google_auth_url" alt="" v-show="imgshow" class="QRcodeImg" />
            </div>
            <div class="code flex items-center justify-center textColor">{{ google_auth_secret }}
                <img src="@/assets/image/reload.png" @click="getGoogleauth" alt="" />
            </div>
            <p class="tips">{{ $t('(请妥善备份密钥以防丢失)') }}</p>
            <div class="copy textColor" @click="copy">{{ $t('复制') }}</div>
        </div>
        <div class="flex justify-between mt-48 mb-20">
            <div class="textColor">{{ $t('谷歌验证码') }}</div>
            <div class="flex items-center">
                <div class="colorMain" @click="value = ''">{{ $t('清除') }}</div>
                <div class="colorMain ml-30" @click="pastCont">{{ $t('粘贴') }}</div>
            </div>
        </div>
        <van-password-input :value="value" :gutter="16" :focused="showKeyboard" @focus="showKeyboard = true"
            :mask="false" />
        <van-number-keyboard v-model="value" :show="showKeyboard" @blur="showKeyboard = false" />
        <div class="mt-20"></div>
        <div class="mt-44 bottom tabBackground textColor">
            <p>{{ $t('注意事项') }}</p>
            <p>{{ $t('1.下载Google身份验证器APP') }}</p>
            <p>{{ $t('2.扫描上图二维码输入验证码完成绑定') }}</p>
        </div>
        <div class="btn btnMain" @click="submit">{{ $t('确定') }}</div>
    </div>
</template>
 
<script>
import Step from "./step.vue";
import { PasswordInput, NumberKeyboard } from 'vant';
import Axios from "@/API/userCenter.js";
 
export default {
    props: {
 
    },
    components: {
        Step,
        [PasswordInput.name]: PasswordInput,
        [NumberKeyboard.name]: NumberKeyboard,
    },
    data() {
        return {
            google_auth_secret: '',
            imgshow: true,
            google_auth_url: '',
            value: '',
            showKeyboard: false
        }
    },
    mounted() {
        this.getGoogleauth();
    },
    methods: {
        copy() {
            this.$copyText(this.google_auth_secret).then(message => {
                this.$toast(this.$t('复制成功'));
            }).catch(err => {
 
            })
        },
        getGoogleauth() {
            Axios.getGoogleauth({
            }).then((res) => {
                this.google_auth_secret = res.data.google_auth_secret;
                this.google_auth_url = res.data.google_auth_url
                console.log(res)
            }).catch((error) => {
                if (error.code === 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
                else if (error.msg !== undefined) { this.$toast(this.$t(error.msg)); }
            });
        },
        bindGoogleauth() {
 
            Axios.bindGoogleauth({
                secret: this.google_auth_secret,
                code: this.value
            }).then((res) => {
                let google_auth_bind = res.data.google_auth_bind;
                if (google_auth_bind) {
                    this.$toast(this.$t('绑定成功'));
                    this.$router.push('/finish')
                } else {
                    this.$toast(this.$t('绑定失败'));
                }
            }).catch((error) => {
                if (error.code === 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
                else if (error.msg !== undefined) { this.$toast(this.$t(error.msg)); }
            });
 
 
        },
        submit() {
            if (this.value.length < 6) {
                this.$toast(this.$t('请输入验证码'));
                return false
            }
            this.bindGoogleauth()
        },
        async pastCont() {
            this.value = await navigator.clipboard.readText();
        }
    },
    watch: {
        value(value) {
            if (value.length === 6) {
                this.showKeyboard = false
            }
        },
    },
}
</script>
 
<style lang="scss" scoped>
.gooleVerify {
    padding: 32px;
    padding-bottom: 108px;
    font-size: 26px;
    width: 100%;
    box-sizing: border-box;
}
 
.header {
    display: flex;
    justify-content: space-between;
    padding: 0 26px;
    font-size: 28px;
    height: 100px;
    line-height: 100px;
}
 
.stepBox {
    padding: 0 30px;
}
 
.title {
    font-weight: 700;
    font-size: 52px;
    margin-top: 54px;
    margin-bottom: 52px;
}
 
.imgbox {
    @include themify() {
        border: 1px solid themed("line_color");
    }
 
    padding: 30px;
    width: 364px;
    height: 364px;
    box-sizing: border-box;
 
    img {
        width: 100%;
        height: 100%;
    }
}
 
.code {
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    margin-top: 44px;
    height: 36px;
 
    img {
        width: 26px;
        height: 26px;
        margin-left: 10px;
    }
}
 
.tips {
    margin-top: 20px;
    color: #999999;
}
 
.copy {
    border-radius: 8px;
    width: 264px;
    height: 80px;
    margin-top: 32px;
 
    @include themify() {
        border: 2px solid themed("line_color");
    }
 
    line-height: 80px;
}
 
.bottom {
    padding: 40px 32px 14px 32px;
 
    p {
        padding-bottom: 26px;
    }
}
 
.btn {
    color: #fff;
    height: 88px;
    line-height: 88px;
    text-align: center;
    font-size: 32px;
    margin-top: 40px;
    border-radius: 10px;
}
 
.van-password-input {
    margin: 0;
}
 
.van-password-input__security li {
    @include themify() {
        background: themed("tab_background");
    }
 
    width: 100px;
    height: 100px;
 
    @include themify() {
        color: themed("text_color");
    }
}
</style>