301 lines
6.3 KiB
Vue
301 lines
6.3 KiB
Vue
<template>
|
|
<view class="page">
|
|
<z-nav-bar></z-nav-bar>
|
|
<!-- 公共组件-每个页面必须引入 -->
|
|
<public-module></public-module>
|
|
<view class="title">注册</view>
|
|
<view class="input_box">
|
|
<text class="input_tit">手机号</text>
|
|
<input type="text" v-model="phone" placeholder="请输入手机号" />
|
|
</view>
|
|
<view class="input_box">
|
|
<text class="input_tit">验证码</text>
|
|
<input type="number" v-model="code" placeholder="请输入验证码" />
|
|
<button @click="getCode">{{codeText}}</button>
|
|
</view>
|
|
<view class="input_box">
|
|
<text class="input_tit">密码</text>
|
|
<input password v-model="password" placeholder="请输入密码" />
|
|
</view>
|
|
<view class="input_box">
|
|
<text class="input_tit">确认密码</text>
|
|
<input password v-model="confirmPassword" placeholder="请确认密码" />
|
|
</view>
|
|
<view class="input_box">
|
|
<text class="input_tit">推荐码</text>
|
|
<input type="text" v-model="recommendCode" placeholder="推荐码(非必填)" @confirm="onSubmit" />
|
|
</view>
|
|
<view class="protocol_box">
|
|
<view class="select" :class="{active: agree}" @click="agree = !agree"></view>
|
|
我已同意
|
|
<text @click="onPageJump('/pages/user/protocol')">《用户协议》</text>
|
|
和
|
|
<text @click="onPageJump('/pages/user/protocol')">《隐私协议》</text>
|
|
</view>
|
|
<view class="btn_box"><button @click="onSubmit">注 册</button></view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import md5 from '@/plugins/md5';
|
|
var clear;
|
|
export default {
|
|
data() {
|
|
return {
|
|
//手机号
|
|
phone: '',
|
|
// 密码
|
|
password: '',
|
|
//验证码
|
|
code: '',
|
|
//确认密码
|
|
confirmPassword: '',
|
|
// 推荐码
|
|
recommendCode: "",
|
|
//验证码
|
|
codeText: '获取验证码',
|
|
//验证码已发
|
|
readonly: false,
|
|
agree: false,
|
|
};
|
|
},
|
|
//第一次加载
|
|
onLoad(e) {},
|
|
//页面显示
|
|
onShow() {},
|
|
//方法
|
|
methods: {
|
|
onJumpPage(url) {
|
|
uni.navigateTo({
|
|
url: url
|
|
});
|
|
},
|
|
//获取验证码
|
|
getCode() {
|
|
if (this.readonly) {
|
|
uni.showToast({
|
|
title: '验证码已发送',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.phone) {
|
|
uni.showToast({
|
|
title: '请输入手机号',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.$base.phoneRegular.test(this.phone)) {
|
|
uni.showToast({
|
|
title: '请输入正确的手机号',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
this.$http
|
|
// .post('api/common/v1/send_sms', {
|
|
.post('book/user/sms/sendcode', {
|
|
phone: this.phone,
|
|
type: 1000
|
|
})
|
|
.then(res => {
|
|
this.getCodeState();
|
|
});
|
|
},
|
|
//验证码按钮文字状态
|
|
getCodeState() {
|
|
const _this = this;
|
|
this.readonly = true;
|
|
this.codeText = '60S后重新获取';
|
|
var s = 60;
|
|
clear = setInterval(() => {
|
|
s--;
|
|
_this.codeText = s + 'S后重新获取';
|
|
if (s <= 0) {
|
|
clearInterval(clear);
|
|
_this.codeText = '获取验证码';
|
|
_this.readonly = false;
|
|
}
|
|
}, 1000);
|
|
},
|
|
onSubmit() {
|
|
if (!this.agree) {
|
|
uni.showToast({
|
|
title: '请先同意《用户协议》和《隐私协议》',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.phone) {
|
|
uni.showToast({
|
|
title: '请输入手机号',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.$base.phoneRegular.test(this.phone)) {
|
|
uni.showToast({
|
|
title: '请输入正确的手机号',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.code) {
|
|
uni.showToast({
|
|
title: '请输入验证码',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.password) {
|
|
uni.showToast({
|
|
title: '请输入密码',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.confirmPassword) {
|
|
uni.showToast({
|
|
title: '请输入确认密码',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (this.confirmPassword != this.password) {
|
|
uni.showToast({
|
|
title: '两次密码不一致',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
if (!this.$base.passwordRegular.test(this.password)) {
|
|
uni.showToast({
|
|
title: '请输入不少于6位且包含数字和字母的密码',
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
let httpData = {
|
|
tel: this.phone,
|
|
code: this.code,
|
|
// password: md5(this.password),1
|
|
password: this.password,
|
|
};
|
|
if (this.recommendCode) {
|
|
httpData.recommendCode = this.recommendCode;
|
|
}
|
|
this.$http
|
|
.post('book/user/register', httpData)
|
|
.then(res => {
|
|
uni.showModal({
|
|
title: "提示",
|
|
content: "注册成功!",
|
|
showCancel: false,
|
|
success: (res) => {
|
|
uni.navigateBack();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
},
|
|
//页面隐藏
|
|
onHide() {},
|
|
//页面卸载
|
|
onUnload() {},
|
|
//页面下来刷新
|
|
onPullDownRefresh() {},
|
|
//页面上拉触底
|
|
onReachBottom() {},
|
|
//用户点击分享
|
|
onShareAppMessage(e) {
|
|
return this.wxShare();
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import '@/style/mixin.scss';
|
|
|
|
.page {
|
|
background-color: #FFF;
|
|
padding: 0 65rpx;
|
|
min-height: 100vh;
|
|
|
|
.title {
|
|
padding: 60rpx 0 40rpx 0;
|
|
font-size: 60rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
.input_box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 100rpx;
|
|
padding-top: 30rpx;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
align-items: center;
|
|
text{
|
|
font-size: 30rpx;
|
|
width: 180rpx;
|
|
}
|
|
|
|
input {
|
|
flex: 1;
|
|
height: 70rpx;
|
|
line-height: 80rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
button {
|
|
height: 78rpx;
|
|
line-height: 78rpx;
|
|
font-size: 30rpx;
|
|
color: $themeColor;
|
|
|
|
&:active {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn_box {
|
|
margin-top: 40rpx;
|
|
|
|
button {
|
|
font-size: 32rpx;
|
|
@include theme('btn_bg') color: #fff;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
border-radius: 50rpx;
|
|
}
|
|
}
|
|
|
|
.protocol_box {
|
|
margin-top: 40rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
|
|
.select {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
background-image: url("../../static/icon/ic_gender_unselected.png");
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% auto;
|
|
margin-right: 15rpx;
|
|
|
|
&.active {
|
|
background-image: url("../../static/icon/ic_agreed.png");
|
|
}
|
|
}
|
|
|
|
>text {
|
|
color: $themeColor;
|
|
}
|
|
}
|
|
}
|
|
</style>
|