254 lines
6.1 KiB
Vue
254 lines
6.1 KiB
Vue
<template>
|
|
<view class="Box">
|
|
<view class="box_one" v-if="isPwd == 0">安全密码用于商户推广提现/订单退款,确保资金安全</view>
|
|
<view class="box_box">
|
|
<view class="box_item flex-between" v-if="isPwd == 0">
|
|
<text class="top_box_one_text">手机号码</text>
|
|
<input type="number" v-model="form.mobile" placeholder="请输入手机号" maxlength="11" disabled="disabled" />
|
|
</view>
|
|
<view class="box_item flex-between">
|
|
<text class="top_box_one_text">密码</text>
|
|
<input type="number" v-model="form.password" placeholder="密码必须是6位" maxlength="6"
|
|
:password="!passwords" />
|
|
</view>
|
|
<view class="box_item flex-between">
|
|
<text class="top_box_one_text">确认密码</text>
|
|
<input type="number" v-model="form.payPassword" placeholder="确认密码必须是6位" maxlength="6"
|
|
:password="!payPasswords" />
|
|
</view>
|
|
<view class="box_item flex-between" style="position:relative;">
|
|
<text class="top_box_one_text">验证码</text>
|
|
<input type="number" v-model="form.checkCode" placeholder="请输入验证码" style="padding-right: 140rpx;" />
|
|
<view class="top_box_one_texts">
|
|
<view v-if="showText == true" class="yzm" @click="CodeRegister">{{ Recapture }}</view>
|
|
<view v-else style="color: #ccc; background-color: #f9f9f9; border-radius:16px; padding: 10rpx;">
|
|
{{ second }}s重新发送
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex-colum">
|
|
<view class="Box_bottom" @click="userInfosavePayPassword">确定</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
isPwd: uni.cache.get('userInfo').isPwd,
|
|
form: {
|
|
mobile: uni.cache.get('userInfo').telephone,
|
|
password: '',
|
|
payPassword: '',
|
|
checkCode: ''
|
|
},
|
|
passwords: false,
|
|
payPasswords: false,
|
|
// 注册定时器 初始值
|
|
second: 60,
|
|
showText: true,
|
|
Recapture: '发送验证码'
|
|
};
|
|
},
|
|
onLoad() {
|
|
|
|
if (uni.cache.get('userInfo').isPwd != 0) {
|
|
uni.setNavigationBarTitle({
|
|
title: '忘记支付密码', // 标题文本,必须是字符串
|
|
});
|
|
}
|
|
|
|
},
|
|
methods: {
|
|
async CodeRegister() {
|
|
const res = await this.api.phoneValidateCode({
|
|
// post 手机验证码
|
|
phone: this.form.mobile
|
|
});
|
|
if (res) {
|
|
uni.showToast({
|
|
title: '验证码获取成功',
|
|
icon: 'none'
|
|
});
|
|
// 定时器
|
|
this.showText = false;
|
|
this.Recapture = '重新获取';
|
|
var interval = setInterval(() => {
|
|
let times = --this.second;
|
|
this.second = times < 10 ? '0' + times : times; //小于10秒补 0
|
|
}, 1000);
|
|
setTimeout(() => {
|
|
clearInterval(interval);
|
|
this.second = 60;
|
|
this.showText = true;
|
|
}, 60000);
|
|
}
|
|
},
|
|
async loginwxuserInfo() {
|
|
let res = await this.api.loginwxuserInfo({
|
|
userId: uni.getStorageSync('userInfo').id,
|
|
})
|
|
if (res.code == 0) {
|
|
uni.cache.set('userInfo', res.data);
|
|
}
|
|
},
|
|
async userInfosavePayPassword() {
|
|
|
|
if (this.form.mobile.length != 11 && this.isPwd == 0) {
|
|
uni.showToast({
|
|
title: '手机号必须是11位',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.form.password == null || this.form.password == '') {
|
|
uni.showToast({
|
|
title: '请输入密码',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.form.payPassword == null || this.form.payPassword == '') {
|
|
uni.showToast({
|
|
title: '请输入确认密码',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.form.password.length != 6 || this.form.payPassword.length != 6) {
|
|
uni.showToast({
|
|
title: '密码必须是6位',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.form.payPassword != this.form.password) {
|
|
uni.showToast({
|
|
title: '密码和确认密码不一致',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.form.checkCode == null || this.form.checkCode == '') {
|
|
uni.showToast({
|
|
title: '请输入验证码',
|
|
icon: 'none'
|
|
});
|
|
return false;
|
|
}
|
|
let res = await this.api.loginresetPwd({
|
|
pwd: this.form.password,
|
|
code: this.form.checkCode
|
|
})
|
|
|
|
if (res.code == 0) {
|
|
if (uni.cache.get('userInfo').isPwd != 0) {
|
|
uni.showToast({
|
|
title: '修改成功',
|
|
icon: 'none'
|
|
});
|
|
} else {
|
|
uni.showToast({
|
|
title: '设置成功',
|
|
icon: 'none'
|
|
});
|
|
}
|
|
// 获取用户信息
|
|
this.loginwxuserInfo()
|
|
setTimeout(() => {
|
|
uni.navigateBack();
|
|
}, 1000);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.Box {
|
|
padding: 0 28rpx;
|
|
|
|
.box_one {
|
|
margin-top: 26rpx;
|
|
font-size: 24rpx;
|
|
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
|
|
font-weight: 400;
|
|
color: #999999;
|
|
}
|
|
|
|
.box_box {
|
|
background: #fff;
|
|
padding: 0 32rpx;
|
|
|
|
.box_item {
|
|
.top_box_one_text {
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
input {
|
|
padding: 26rpx 0;
|
|
width: 75%;
|
|
font-size: 24rpx;
|
|
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
|
|
font-weight: 400;
|
|
color: #999999;
|
|
border-bottom: 1rpx solid #E5E5E5;
|
|
}
|
|
|
|
.repeat {
|
|
position: absolute;
|
|
bottom: 26rpx;
|
|
right: 0;
|
|
width: 25rpx;
|
|
height: 17rpx;
|
|
}
|
|
|
|
.top_box_one_texts {
|
|
position: absolute;
|
|
right: 32rpx;
|
|
font-size: 28rpx;
|
|
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
|
|
font-weight: 400;
|
|
color: #5082fd;
|
|
|
|
.yzm {
|
|
padding: 6rpx 10rpx;
|
|
background: #FFD158;
|
|
border-radius: 6px 6px 6px 6px;
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
font-weight: 500;
|
|
font-size: 12px;
|
|
color: #333333;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.flex-colum {
|
|
width: 100%;
|
|
margin-top: 156rpx;
|
|
|
|
.Box_bottom {
|
|
width: 558rpx;
|
|
height: 72rpx;
|
|
background: #FFD158;
|
|
border-radius: 50rpx;
|
|
font-size: 36rpx;
|
|
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
line-height: 72rpx;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
</style> |