2024-08-20 19:54:37 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view>
|
2024-09-03 09:42:53 +08:00
|
|
|
|
<view class="tips">找回密码和登录新设备时,可通过绑定的邮箱验证</view>
|
2025-02-06 11:37:41 +08:00
|
|
|
|
<input
|
|
|
|
|
|
class="input-email"
|
|
|
|
|
|
:value="email"
|
|
|
|
|
|
placeholder="请输入邮箱"
|
|
|
|
|
|
placeholder-class="input-placeholder"
|
|
|
|
|
|
:focus="true"
|
|
|
|
|
|
@input="updateInputEmail"
|
|
|
|
|
|
/>
|
2024-08-20 19:54:37 +08:00
|
|
|
|
<view class="view-top">
|
2025-02-06 11:37:41 +08:00
|
|
|
|
<input
|
|
|
|
|
|
type="number"
|
|
|
|
|
|
class="input-verify"
|
|
|
|
|
|
:value="verificationCode"
|
|
|
|
|
|
maxlength="6"
|
|
|
|
|
|
placeholder="请输入验证码"
|
|
|
|
|
|
placeholder-class="input-placeholder"
|
|
|
|
|
|
@input="updateInputCode"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<view class="button-verify" @click="getEmailCode">{{ text }}</view>
|
2024-08-20 19:54:37 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="button" @click="toUpdateEmail">确定</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-02-06 11:37:41 +08:00
|
|
|
|
import { mapActions, mapState } from 'pinia'
|
|
|
|
|
|
import { test } from 'uview-plus'
|
|
|
|
|
|
import { useUserStore } from '@/stores/user'
|
|
|
|
|
|
import { getEmailCodeRequest, updateEmailRequest } from '@/api/user'
|
|
|
|
|
|
import { useBasicStore } from '@/stores/basic'
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
text: '获取验证码',
|
|
|
|
|
|
verificationCode: '',
|
|
|
|
|
|
token: '',
|
|
|
|
|
|
email: '',
|
|
|
|
|
|
pending: false
|
|
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
},
|
2025-02-06 11:37:41 +08:00
|
|
|
|
computed: {
|
|
|
|
|
|
...mapState(useUserStore, ['userInfo'])
|
2024-08-20 19:54:37 +08:00
|
|
|
|
},
|
2025-02-06 11:37:41 +08:00
|
|
|
|
onLoad(option) {
|
|
|
|
|
|
if (option.token) {
|
|
|
|
|
|
this.token = option.token
|
2024-08-20 19:54:37 +08:00
|
|
|
|
} else {
|
2025-02-06 11:37:41 +08:00
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
|
|
|
title: '绑定邮箱'
|
2024-08-20 19:54:37 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-02-06 11:37:41 +08:00
|
|
|
|
methods: {
|
|
|
|
|
|
...mapActions(useUserStore, ['updateUserInfo']),
|
|
|
|
|
|
...mapActions(useBasicStore, ['routeJump', 'backAndToast', 'getNetworkType']),
|
|
|
|
|
|
updateInputEmail(data) {
|
|
|
|
|
|
this.email = data.detail.value
|
|
|
|
|
|
},
|
|
|
|
|
|
updateInputCode(data) {
|
|
|
|
|
|
this.verificationCode = data.detail.value
|
|
|
|
|
|
},
|
|
|
|
|
|
async getEmailCode() {
|
|
|
|
|
|
if (this.text !== '获取验证码') {
|
2024-09-07 13:56:25 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-02-06 11:37:41 +08:00
|
|
|
|
if (!test.email(this.email)) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入正确的邮箱',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
})
|
2024-08-21 16:20:11 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-02-06 11:37:41 +08:00
|
|
|
|
const netWork = await this.getNetworkType()
|
|
|
|
|
|
if (!netWork) {
|
|
|
|
|
|
return
|
2024-08-20 19:54:37 +08:00
|
|
|
|
}
|
2025-02-06 11:37:41 +08:00
|
|
|
|
const { code } = await getEmailCodeRequest({
|
|
|
|
|
|
account: this.email,
|
|
|
|
|
|
channel: '2',
|
|
|
|
|
|
codeType: 6
|
|
|
|
|
|
})
|
2024-08-20 19:54:37 +08:00
|
|
|
|
if (code === 0) {
|
2025-02-06 11:37:41 +08:00
|
|
|
|
this.updateTime()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '验证码获取失败',
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
async toUpdateEmail() {
|
|
|
|
|
|
if (!test.email(this.email)) {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: '请输入正确的邮箱',
|
|
|
|
|
|
icon: 'none'
|
2024-08-20 19:54:37 +08:00
|
|
|
|
})
|
2025-02-06 11:37:41 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.verificationCode.length === 6 && test.digits(this.verificationCode)) {
|
|
|
|
|
|
const netWork = await this.getNetworkType()
|
|
|
|
|
|
if (!netWork) {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.pending) {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
this.pending = true
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
verificationCode: this.verificationCode,
|
|
|
|
|
|
email: this.email
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.token !== '') {
|
|
|
|
|
|
params.unbindToken = this.token
|
|
|
|
|
|
}
|
|
|
|
|
|
const { code, message } = await updateEmailRequest(params)
|
|
|
|
|
|
if (code === 0) {
|
|
|
|
|
|
this.updateUserInfo({
|
|
|
|
|
|
...this.userInfo,
|
|
|
|
|
|
email: this.email
|
|
|
|
|
|
})
|
|
|
|
|
|
this.backAndToast('邮箱绑定成功')
|
|
|
|
|
|
} else {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: message,
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
this.pending = false
|
2024-08-20 19:54:37 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
uni.showToast({
|
2025-02-06 11:37:41 +08:00
|
|
|
|
title: '验证码为6位纯数字',
|
2024-08-20 19:54:37 +08:00
|
|
|
|
icon: 'none'
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2025-02-06 11:37:41 +08:00
|
|
|
|
},
|
|
|
|
|
|
updateTime() {
|
|
|
|
|
|
let time = 120
|
|
|
|
|
|
this.text = `${time} s`
|
|
|
|
|
|
const now = new Date().getTime()
|
|
|
|
|
|
const timer = setInterval(() => {
|
|
|
|
|
|
const second = parseInt((new Date().getTime() - now) / 1000, 10)
|
|
|
|
|
|
this.text = `${time - second} s`
|
|
|
|
|
|
if (time <= second) {
|
|
|
|
|
|
clearInterval(timer)
|
|
|
|
|
|
this.text = '获取验证码'
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 1000)
|
2024-08-20 19:54:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2025-02-06 11:37:41 +08:00
|
|
|
|
page {
|
|
|
|
|
|
background-color: $uni-bg-color-grey;
|
|
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.tips {
|
|
|
|
|
|
padding: 24rpx 32rpx 0 32rpx;
|
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
color: #999999;
|
|
|
|
|
|
}
|
2024-09-03 09:42:53 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.input-email {
|
|
|
|
|
|
width: 616rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
height: 108rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
padding-right: 32rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
padding-left: 32rpx;
|
|
|
|
|
|
margin-top: 48rpx;
|
|
|
|
|
|
margin-left: 35rpx;
|
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border-radius: 16rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.button-verify {
|
|
|
|
|
|
width: 265rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
height: 108rpx;
|
|
|
|
|
|
margin-top: 48rpx;
|
|
|
|
|
|
margin-left: 35rpx;
|
|
|
|
|
|
font-size: 32rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
line-height: 108rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
color: #ffffff;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
background: #63b8af;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
border-radius: 16rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.view-top {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.input-verify {
|
|
|
|
|
|
width: 316rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
height: 108rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
padding-right: 32rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
padding-left: 32rpx;
|
|
|
|
|
|
margin-top: 48rpx;
|
|
|
|
|
|
margin-left: 35rpx;
|
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
|
border-radius: 16rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.input-placeholder {
|
|
|
|
|
|
height: 108rpx;
|
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
line-height: 108rpx;
|
|
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
|
2025-02-06 11:37:41 +08:00
|
|
|
|
.button {
|
|
|
|
|
|
width: 680rpx;
|
|
|
|
|
|
height: 96rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
margin-top: 32rpx;
|
|
|
|
|
|
margin-left: 35rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
font-size: 32rpx;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
line-height: 96rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
color: #ffffff;
|
2025-06-09 14:37:37 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
background: #63b8af;
|
|
|
|
|
|
border-radius: 16rpx;
|
2025-02-06 11:37:41 +08:00
|
|
|
|
}
|
2024-08-20 19:54:37 +08:00
|
|
|
|
</style>
|