2024-03-21 17:52:58 +08:00
|
|
|
<template>
|
|
|
|
<view :style="viewColor">
|
|
|
|
<view class="container">
|
|
|
|
<view class="header">
|
|
|
|
<text class="title">绑定手机号</text>
|
|
|
|
<text class="iconfont icon-guanbi5" @tap="closePopup"></text>
|
|
|
|
</view>
|
|
|
|
<view class="main_counts">
|
|
|
|
<form report-submit='true'>
|
|
|
|
<view class="ChangePassword">
|
|
|
|
<view class="list">
|
|
|
|
<view class="item">
|
|
|
|
<input type='number' placeholder='输入手机号码' placeholder-class='placeholder' v-model="phone"></input>
|
|
|
|
</view>
|
|
|
|
<view class="item acea-row row-between-wrapper">
|
|
|
|
<input type='number' placeholder='输入验证码' placeholder-class='placeholder' class="codeIput" v-model="captcha"></input>
|
|
|
|
<button class="code" :class="disabled === true ? 'on' : ''" :disabled='disabled' @click="handleVerify">
|
|
|
|
{{ text }}
|
|
|
|
</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<button form-type="submit" @click="editPwd" class="confirmBnt">确认绑定</button>
|
|
|
|
<!-- #ifdef MP -->
|
|
|
|
<button v-if="!isCommuity && wechat_phone_switch == 1" form-type="submit" class="getPhoneBtn" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber"><text class="iconfont icon-weixin2"></text>使用微信绑定号码</button>
|
|
|
|
<!-- #endif -->
|
|
|
|
</view>
|
|
|
|
</form>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }" ref="verify"></Verify>
|
|
|
|
<view class='mask' catchtouchmove="true" :hidden='popup.show==false' @tap="closePopup"></view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
import sendVerifyCode from "@/mixins/SendVerifyCode";
|
|
|
|
import { bindingPhone, verifyCode, appletsDecrypt } from '@/api/api.js';
|
|
|
|
import { registerVerify } from '@/api/user.js'
|
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
import { configMap } from '@/utils/index';
|
|
|
|
import Verify from '@/components/verify/verify.vue';
|
|
|
|
export default {
|
|
|
|
props:{
|
|
|
|
isCommuity: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mixins: [sendVerifyCode],
|
|
|
|
components: {
|
|
|
|
Verify
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
phone:'',
|
|
|
|
captcha:'',
|
|
|
|
key: '',
|
|
|
|
codeVal: '',
|
|
|
|
popup: {
|
|
|
|
show: false
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters(['isLogin', 'viewColor']),
|
|
|
|
...configMap(['wechat_phone_switch'])
|
|
|
|
},
|
|
|
|
onLoad() {},
|
|
|
|
methods: {
|
|
|
|
// 点击关闭按钮
|
|
|
|
closePopup() {
|
|
|
|
this.$emit('close');
|
|
|
|
},
|
|
|
|
// #ifdef MP
|
|
|
|
getPhoneNumber(e) {
|
|
|
|
let that = this;
|
|
|
|
appletsDecrypt({
|
|
|
|
iv:e.detail.iv,
|
|
|
|
encryptedData:e.detail.encryptedData,
|
|
|
|
code:that.codeVal
|
|
|
|
}).then(res => {
|
|
|
|
that.$util.Tips({
|
|
|
|
title: '绑定成功!',
|
|
|
|
icon: 'success'
|
|
|
|
})
|
|
|
|
setTimeout(()=>{
|
|
|
|
uni.switchTab({
|
|
|
|
url: '/pages/user/index',
|
|
|
|
});
|
|
|
|
},2000)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// #endif
|
|
|
|
editPwd: function() {
|
|
|
|
let that = this;
|
|
|
|
if (!that.phone) return that.$util.Tips({
|
|
|
|
title: '请输入手机号码!'
|
|
|
|
});
|
|
|
|
if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
|
|
|
|
title: '请输入正确的手机号码!'
|
|
|
|
});
|
|
|
|
if (!that.captcha) return that.$util.Tips({
|
|
|
|
title: '请填写验证码'
|
|
|
|
});
|
|
|
|
bindingPhone({
|
|
|
|
phone: that.phone,
|
|
|
|
sms_code: that.captcha
|
|
|
|
}).then(res => {
|
|
|
|
if (res.data !== undefined && res.data.is_bind) {
|
|
|
|
uni.showModal({
|
|
|
|
title: '是否绑定手机号',
|
|
|
|
content: res.msg,
|
|
|
|
confirmText: '绑定',
|
|
|
|
success(res) {
|
|
|
|
if (res.confirm) {
|
|
|
|
bindingPhone({
|
|
|
|
phone: that.phone,
|
|
|
|
captcha: that.captcha,
|
|
|
|
step: 1
|
|
|
|
}).then(res => {
|
|
|
|
that.$emit('close');
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: res.msg,
|
|
|
|
icon: 'success'
|
|
|
|
});
|
|
|
|
}).catch(err => {
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: err
|
|
|
|
});
|
|
|
|
})
|
|
|
|
} else if (res.cancel) {
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: '您已取消绑定!'
|
|
|
|
}, {
|
|
|
|
tab: 5,
|
|
|
|
url: '/pages/users/user_info/index'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else
|
|
|
|
that.$emit('close');
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: '绑定成功!',
|
|
|
|
icon: 'success'
|
|
|
|
});
|
|
|
|
}).catch(err => {
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: err
|
|
|
|
});
|
|
|
|
})
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* 发送验证码
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
async code(data) {
|
|
|
|
let that = this;
|
|
|
|
if (!that.phone) return that.$util.Tips({
|
|
|
|
title: '请填写手机号码!'
|
|
|
|
});
|
|
|
|
if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
|
|
|
|
title: '请输入正确的手机号码!'
|
|
|
|
});
|
|
|
|
this.disabled = true
|
|
|
|
await registerVerify({
|
|
|
|
phone:that.phone,
|
|
|
|
key:that.key,
|
|
|
|
code:that.captcha,
|
|
|
|
type: 'binding',
|
|
|
|
captchaType: 'blockPuzzle',
|
|
|
|
captchaVerification: data.captchaVerification
|
|
|
|
}).then(res => {
|
|
|
|
this.disabled = false
|
|
|
|
that.$util.Tips({
|
|
|
|
title: res.msg
|
|
|
|
});
|
|
|
|
that.sendCode();
|
|
|
|
}).catch(err => {
|
|
|
|
this.disabled = false
|
|
|
|
return that.$util.Tips({
|
|
|
|
title: err
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
success(data) {
|
|
|
|
this.$refs.verify.hide();
|
|
|
|
this.code(data);
|
|
|
|
},
|
|
|
|
handleVerify() {
|
|
|
|
let that = this;
|
|
|
|
if (!that.phone) return that.$util.Tips({
|
|
|
|
title: '请填写手机号码!'
|
|
|
|
});
|
|
|
|
if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
|
|
|
|
title: '请输入正确的手机号码!'
|
|
|
|
});
|
|
|
|
this.$refs.verify.show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
.container{
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 16rpx 16rpx 0 0;
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 30rpx;
|
|
|
|
.header{
|
|
|
|
position: relative;
|
|
|
|
padding: 40rpx 30rpx;
|
|
|
|
text-align: center;
|
|
|
|
.title{
|
|
|
|
color: #282828;
|
|
|
|
font-size: 32rpx;
|
|
|
|
}
|
|
|
|
.iconfont{
|
|
|
|
color: #8A8A8A;
|
|
|
|
font-size: 28rpx;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.icon-guanbi5 {
|
|
|
|
right: 20rpx;
|
|
|
|
color: #8a8a8a;
|
|
|
|
font-size: 30rpx;
|
|
|
|
line-height: 30rpx;
|
|
|
|
top: 20rpx;
|
|
|
|
background-color: transparent;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.ChangePassword{
|
|
|
|
padding: 0 30rpx 100rpx;
|
|
|
|
}
|
|
|
|
.ChangePassword .phone {
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 55rpx;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item {
|
|
|
|
|
|
|
|
height: 86rpx;
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item input {
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
font-size: 32rpx;
|
|
|
|
border: 1px solid #DCDCDC;
|
|
|
|
border-radius: 43rpx;
|
|
|
|
padding: 0 40rpx;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item .placeholder {
|
|
|
|
color: #b9b9bc;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item input.codeIput {
|
|
|
|
max-width: 400rpx;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item .code {
|
|
|
|
font-size: 28rpx;
|
|
|
|
background-color: var(--view-minorColor);
|
|
|
|
color: var(--view-theme);
|
|
|
|
width: 230rpx;
|
|
|
|
height: 86rpx;
|
|
|
|
border-radius: 43rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.ChangePassword .list .item .code.on {
|
|
|
|
color: #b9b9bc;
|
|
|
|
}
|
|
|
|
.ChangePassword .confirmBnt {
|
|
|
|
font-size: 32rpx;
|
|
|
|
width: 580rpx;
|
|
|
|
height: 90rpx;
|
|
|
|
border-radius: 45rpx;
|
|
|
|
color: #fff;
|
|
|
|
margin: 60rpx auto 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 90rpx;
|
|
|
|
background-color: var(--view-theme);
|
|
|
|
}
|
|
|
|
.getPhoneBtn{
|
|
|
|
font-size: 32rpx;
|
|
|
|
width: 580rpx;
|
|
|
|
height: 90rpx;
|
|
|
|
border-radius: 45rpx;
|
|
|
|
border: 1px solid #3CB625;
|
|
|
|
color: #3CB625;
|
|
|
|
margin: 40rpx auto 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 90rpx;
|
|
|
|
.iconfont{
|
|
|
|
font-size: 32rpx;
|
|
|
|
margin-right: 12rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/deep/.verifybox{
|
|
|
|
top: auto!important;
|
|
|
|
}
|
|
|
|
</style>
|