414 lines
9.8 KiB
Vue
414 lines
9.8 KiB
Vue
<template>
|
||
<view class="register">
|
||
<!--顶部返回按钮-->
|
||
<text class="back-btn iconfont iconzuo" @tap="navBack"></text>
|
||
<view class="right-top-sign"></view>
|
||
<!-- 设置白色背景防止软键盘把下部绝对定位元素顶上来盖住输入框等 -->
|
||
<view class="wrapper">
|
||
<view class="left-top-sign">REGISTER</view>
|
||
<view class="welcome">
|
||
绑定手机号!
|
||
</view>
|
||
<view class="input-content">
|
||
<view class="input-item">
|
||
<text class="tit">手机号码</text>
|
||
<input
|
||
type="number"
|
||
v-model="registerParams.mobile"
|
||
placeholder="请输入手机号码"
|
||
maxlength="11"
|
||
/>
|
||
</view>
|
||
<view class="input-item input-item-sms-code">
|
||
<view class="input-wrapper">
|
||
<view class="rf-input-wrapper">
|
||
<view class="tit">验证码</view>
|
||
<input
|
||
type="number"
|
||
v-model="registerParams.code"
|
||
placeholder="请输入验证码"
|
||
maxlength="4"
|
||
data-key="mobile"
|
||
/>
|
||
</view>
|
||
<button
|
||
class="sms-code-btn"
|
||
:disabled="smsCodeBtnDisabled"
|
||
@tap.stop="getSmsCode"
|
||
>
|
||
<text v-if="!smsCodeBtnDisabled">获取验证码</text>
|
||
<text v-else class="sms-code-resend">{{
|
||
`重新发送 (${codeSeconds})`
|
||
}}</text>
|
||
</button>
|
||
</view>
|
||
</view>
|
||
<view class="input-item">
|
||
<text class="tit">密码</text>
|
||
<input
|
||
type="password"
|
||
v-model="registerParams.password"
|
||
placeholder="请输入密码"
|
||
maxlength="18"
|
||
/>
|
||
</view>
|
||
<view class="input-item">
|
||
<text class="tit">确认密码</text>
|
||
<input
|
||
type="password"
|
||
v-model="registerParams.password_repetition"
|
||
placeholder="请输入确认密码"
|
||
maxlength="18"
|
||
/>
|
||
</view>
|
||
|
||
<view class="input-item" >
|
||
<text class="tit">邀请码</text>
|
||
<input
|
||
type="text"
|
||
v-model="registerParams.promoCode"
|
||
placeholder="请输入您的邀请码"
|
||
/>
|
||
</view>
|
||
</view>
|
||
<button
|
||
class="confirm-btn"
|
||
:class="'bg-' + themeColor.name"
|
||
:disabled="btnLoading"
|
||
:loading="btnLoading"
|
||
@tap="toRegister"
|
||
>
|
||
绑定
|
||
</button>
|
||
</view>
|
||
<view class="register-section">
|
||
已经注册过了?
|
||
<text @tap="navTo('/pages/public/login')">马上登录</text>
|
||
</view>
|
||
<!-- 底部协议 -->
|
||
<view class="footer-protocol">
|
||
<text
|
||
@tap="isAppAgreementDefaultSelect"
|
||
class="cuIcon"
|
||
:class="appAgreementDefaultSelect ? `text-${themeColor.name} cuIcon-radiobox` : 'cuIcon-round'"
|
||
></text>
|
||
<text class="content">同意</text>
|
||
<!-- 协议地址 -->
|
||
<navigator :class="'text-' + themeColor.name" url="/pages/set/about/detail?field=protocol_register&title=注册协议" open-type="navigate">《注册协议》</navigator>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<script>
|
||
import { mapMutations } from 'vuex';
|
||
import { bindMobile, smsCode } from '@/api/login';
|
||
import moment from '@/common/moment';
|
||
export default {
|
||
data() {
|
||
return {
|
||
appAgreementDefaultSelect: this.$mSettingConfig.appAgreementDefaultSelect, // 是否允许点击登录按钮
|
||
closeRegisterPromoCode: this.$mSettingConfig.closeRegisterPromoCode, // 是否允许点击登录按钮
|
||
registerParams: {
|
||
mobile: '',
|
||
password: '',
|
||
password_repetition: '',
|
||
promoCode: '',
|
||
nickname: '',
|
||
code: ''
|
||
},
|
||
btnLoading: false,
|
||
reqBody: {},
|
||
codeSeconds: 0, // 验证码发送时间间隔
|
||
smsCodeBtnDisabled: true
|
||
};
|
||
},
|
||
|
||
onLoad(options) {
|
||
|
||
const time =
|
||
moment().valueOf() / 1000 - uni.getStorageSync('registerSmsCodeTime');
|
||
if (time < 60) {
|
||
this.codeSeconds =
|
||
this.$mConstDataConfig.sendCodeTime - parseInt(time, 10);
|
||
this.handleSmsCodeTime(this.codeSeconds);
|
||
} else {
|
||
this.codeSeconds = this.$mConstDataConfig.sendCodeTime;
|
||
this.smsCodeBtnDisabled = false;
|
||
uni.removeStorageSync('registerSmsCodeTime');
|
||
}
|
||
const backUrl = uni.getStorageSync('backToPage');
|
||
if (backUrl.indexOf('promo_code') !== -1) {
|
||
this.registerParams.promoCode = JSON.parse(backUrl)['query']['promo_code'];
|
||
} else {
|
||
this.registerParams.promoCode = options.promo_code;
|
||
}
|
||
},
|
||
methods: {
|
||
isAppAgreementDefaultSelect() {
|
||
// 是否选择协议
|
||
this.appAgreementDefaultSelect = !this.appAgreementDefaultSelect;
|
||
},
|
||
...mapMutations(['login']),
|
||
navBack() {
|
||
this.$mRouter.back();
|
||
},
|
||
// 通用跳转
|
||
navTo(route) {
|
||
this.$mRouter.push({ route });
|
||
},
|
||
// 获取手机验证码
|
||
getSmsCode() {
|
||
this.reqBody['mobile'] = this.registerParams['mobile'];
|
||
let checkSendCode = this.$mGraceChecker.check(
|
||
this.reqBody,
|
||
this.$mFormRule.sendCodeRule
|
||
);
|
||
if (!checkSendCode) {
|
||
this.$mHelper.toast(this.$mGraceChecker.error);
|
||
return;
|
||
}
|
||
this.$http
|
||
.get(smsCode, {
|
||
mobile: this.registerParams.mobile,
|
||
usage: 'register'
|
||
})
|
||
.then(r => {
|
||
if (r) {
|
||
this.$mHelper.toast(`验证码发送成功, 验证码是${r}`);
|
||
} else {
|
||
this.$mHelper.toast('验证码已发送.');
|
||
}
|
||
this.smsCodeBtnDisabled = true;
|
||
uni.setStorageSync('registerSmsCodeTime', moment().valueOf() / 1000);
|
||
this.handleSmsCodeTime(59);
|
||
});
|
||
},
|
||
handleSmsCodeTime(time) {
|
||
let timer = setInterval(() => {
|
||
if (time === 0) {
|
||
clearInterval(timer);
|
||
this.smsCodeBtnDisabled = false;
|
||
} else {
|
||
this.codeSeconds = time;
|
||
this.smsCodeBtnDisabled = true;
|
||
time--;
|
||
}
|
||
}, 1000);
|
||
},
|
||
// 注册账号
|
||
async toRegister() {
|
||
if (this.$mSettingConfig.closeRegister) {
|
||
this.$mHelper.toast('暂未开放注册,敬请期待~');
|
||
return;
|
||
}
|
||
if (!this.appAgreementDefaultSelect) {
|
||
this.$mHelper.toast('请勾选同意注册协议,即可注册哦');
|
||
return;
|
||
}
|
||
this.reqBody['mobile'] = this.registerParams['mobile'];
|
||
this.reqBody['password'] = this.registerParams['password'];
|
||
this.reqBody['code'] = this.registerParams['code'];
|
||
this.reqBody['nickname'] = this.registerParams['nickname'];
|
||
const cheRes = this.$mGraceChecker.check(
|
||
this.reqBody,
|
||
this.$mFormRule.registerRule
|
||
);
|
||
if (!cheRes) {
|
||
this.$mHelper.toast(this.$mGraceChecker.error);
|
||
return;
|
||
}
|
||
if (
|
||
this.registerParams['password'] !==
|
||
this.registerParams['password_repetition']
|
||
) {
|
||
this.$mHelper.toast('两次输入的密码不一致');
|
||
return;
|
||
}
|
||
this.reqBody['password_repetition'] = this.registerParams[
|
||
'password_repetition'
|
||
];
|
||
this.reqBody['promo_code'] = this.registerParams['promoCode'];
|
||
this.btnLoading = true;
|
||
this.reqBody.group = this.$mHelper.platformGroupFilter();
|
||
await this.$http
|
||
.post(bindMobile, this.reqBody)
|
||
.then(r => {
|
||
this.btnLoading = false;
|
||
// -1 手机验证码错误 -2 参数错误 0 失败 成功>0 -3 手机号码已存在 -10 推荐人不存在
|
||
if(r==1){
|
||
this.$mHelper.toast('恭喜您绑定成功');
|
||
this.$mStore.commit('logout');
|
||
this.$mRouter.push({ route: '/pages/public/login' });
|
||
}else if(r==-1){
|
||
this.$mHelper.toast('手机验证码错误');
|
||
return false;
|
||
}else if(r==-2){
|
||
this.$mHelper.toast('参数错误');
|
||
return false;
|
||
}else if(r==-3){
|
||
this.$mHelper.toast('手机号码已存在');
|
||
return false;
|
||
}else if(r==10){
|
||
this.$mHelper.toast('推荐人不存在');
|
||
return false;
|
||
}
|
||
|
||
})
|
||
.catch(() => {
|
||
this.btnLoading = false;
|
||
});
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
<style lang="scss">
|
||
.register {
|
||
padding-top: 60px;
|
||
position: relative;
|
||
width: 100vw;
|
||
overflow: hidden;
|
||
background: #fff;
|
||
|
||
.wrapper {
|
||
position: relative;
|
||
width: 100vw;
|
||
z-index: 90;
|
||
background: #fff;
|
||
padding-bottom: 40upx;
|
||
|
||
.welcome {
|
||
position: relative;
|
||
left: 50upx;
|
||
top: -90upx;
|
||
font-size: 46upx;
|
||
color: #555;
|
||
text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.input-content {
|
||
padding: 0 60upx;
|
||
}
|
||
|
||
.input-item {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
justify-content: center;
|
||
padding: 0 30upx;
|
||
background: $page-color-light;
|
||
height: 120upx;
|
||
border-radius: 4px;
|
||
margin-bottom: 50upx;
|
||
|
||
&:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.tit {
|
||
height: 50upx;
|
||
line-height: 56upx;
|
||
font-size: $font-sm + 2upx;
|
||
color: $font-color-base;
|
||
}
|
||
|
||
input {
|
||
width: calc(100% - 100upx);
|
||
height: 60upx;
|
||
font-size: $font-base + 2upx;
|
||
color: $font-color-dark;
|
||
width: 100%;
|
||
}
|
||
}
|
||
|
||
.input-item-sms-code {
|
||
position: relative;
|
||
width: 100%;
|
||
.sms-code-btn {
|
||
position: absolute;
|
||
color: #111;
|
||
right: 20upx;
|
||
bottom: 20upx;
|
||
font-size: 28upx;
|
||
}
|
||
|
||
.sms-code-resend {
|
||
color: #999;
|
||
}
|
||
|
||
.sms-code-btn:after {
|
||
border: none;
|
||
background-color: transparent;
|
||
}
|
||
}
|
||
|
||
.forget-section {
|
||
font-size: $font-sm + 2upx;
|
||
color: $font-color-spec;
|
||
text-align: center;
|
||
margin-top: 40upx;
|
||
}
|
||
}
|
||
|
||
.back-btn {
|
||
position: absolute;
|
||
left: 40upx;
|
||
z-index: 9999;
|
||
padding-top: var(--status-bar-height);
|
||
top: 40upx;
|
||
font-size: 40upx;
|
||
color: $font-color-dark;
|
||
}
|
||
|
||
.left-top-sign {
|
||
font-size: 120upx;
|
||
color: $page-color-base;
|
||
position: relative;
|
||
left: -16upx;
|
||
}
|
||
|
||
.right-top-sign {
|
||
position: absolute;
|
||
top: 80upx;
|
||
right: -30upx;
|
||
z-index: 95;
|
||
|
||
&:before,
|
||
&:after {
|
||
display: block;
|
||
content: '';
|
||
width: 400upx;
|
||
height: 80upx;
|
||
background: #b4f3e2;
|
||
}
|
||
|
||
&:before {
|
||
transform: rotate(50deg);
|
||
border-radius: 0 50px 0 0;
|
||
}
|
||
|
||
&:after {
|
||
position: absolute;
|
||
right: -198upx;
|
||
top: 0;
|
||
transform: rotate(-50deg);
|
||
border-radius: 50px 0 0 0;
|
||
/* background: pink; */
|
||
}
|
||
}
|
||
|
||
.register-section {
|
||
margin: 30upx 0 50upx;
|
||
width: 100%;
|
||
font-size: $font-sm + 2upx;
|
||
color: $font-color-base;
|
||
text-align: center;
|
||
|
||
text {
|
||
color: $font-color-spec;
|
||
margin-left: 10upx;
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
</style>
|