476 lines
14 KiB
Vue
476 lines
14 KiB
Vue
<template>
|
|
<page-meta :page-style="themeColor"></page-meta>
|
|
<scroll-view scroll-y="true" class="container">
|
|
<!-- <view class="iconfont icon-close back-btn" @click="$util.goBack()"></view> -->
|
|
<view class="header-wrap">
|
|
<view class="title">注册</view>
|
|
<view class="regisiter-agreement">
|
|
<text class="color-tip">已有账号,</text>
|
|
<text class="color-base-text" @click="toLogin">立即登录</text>
|
|
</view>
|
|
</view>
|
|
<view class="body-wrap">
|
|
<view class="form-wrap">
|
|
<view class="input-wrap" v-show="registerMode == 'mobile'">
|
|
<view class="content">
|
|
<view class="area-code">+86</view>
|
|
<input type="number" placeholder="仅限中国大陆手机号注册" placeholder-class="input-placeholder" class="input" maxlength="11" v-model="formData.mobile" />
|
|
</view>
|
|
</view>
|
|
<view class="input-wrap" v-show="registerMode == 'account'">
|
|
<view class="content"><input type="text" placeholder="请输入账号" placeholder-class="input-placeholder" class="input" v-model="formData.account" /></view>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<view class="content"><input type="password" placeholder="请输入密码" placeholder-class="input-placeholder" class="input" v-model="formData.password" /></view>
|
|
</view>
|
|
<view class="input-wrap" v-show="registerMode == 'account'">
|
|
<view class="content">
|
|
<input type="password" placeholder="请确认密码" placeholder-class="input-placeholder" class="input" v-model="formData.rePassword" />
|
|
</view>
|
|
</view>
|
|
<view class="input-wrap" >
|
|
<view class="content">
|
|
<input type="text" placeholder="请输入推荐码" placeholder-class="input-placeholder" class="input" v-model="formData.rCode" />
|
|
</view>
|
|
</view>
|
|
<view class="input-wrap">
|
|
<view class="content">
|
|
<input type="text" placeholder="请输入验证码" placeholder-class="input-placeholder" class="input" v-model="formData.vercode" />
|
|
<image :src="captcha.img" class="captcha" @click="getCaptcha"></image>
|
|
</view>
|
|
</view>
|
|
<view class="input-wrap" v-show="registerMode == 'mobile'">
|
|
<view class="content">
|
|
<input type="text" placeholder="请输入动态码" placeholder-class="input-placeholder" class="input" v-model="formData.dynacode" />
|
|
<view class="dynacode" :class="dynacodeData.seconds == 120 ? 'color-base-text' : 'color-tip'" @click="sendMobileCode">{{ dynacodeData.codeText }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="login-mode-box">
|
|
<text @click="switchRegisterMode" v-show="registerMode == 'mobile' && registerConfig.register.indexOf('username') != -1">使用用户名注册</text>
|
|
<text @click="switchRegisterMode" v-show="registerMode == 'account' && registerConfig.register.indexOf('mobile') != -1">使用手机号注册</text>
|
|
</view>
|
|
<view class="btn_view"><button type="primary" @click="register" class="login-btn color-base-border color-base-bg">注册</button></view>
|
|
<view class="regisiter-agreement">
|
|
点击注册即代表您已同意
|
|
<text class="color-base-text" @click="openPopup">《注册协议》</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view @touchmove.prevent>
|
|
<uni-popup ref="registerPopup" type="center" :maskClick="false">
|
|
<view class="conten-box">
|
|
<view class="close"><text class="iconfont icon-close" @click="toClose"></text></view>
|
|
<view class="title">{{ regisiterAgreement.title }}</view>
|
|
<view class="con">
|
|
<scroll-view scroll-y="true" class="con"><rich-text :nodes="regisiterAgreement.content"></rich-text></scroll-view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
</view>
|
|
|
|
<loading-cover ref="loadingCover"></loading-cover>
|
|
<register-reward ref="registerReward"></register-reward>
|
|
</scroll-view>
|
|
</template>
|
|
|
|
<script>
|
|
import uniPopup from '@/components/uni-popup/uni-popup.vue';
|
|
import validate from 'common/js/validate.js';
|
|
import registerReward from '@/components/register-reward/register-reward.vue';
|
|
|
|
export default {
|
|
components: {
|
|
uniPopup,
|
|
registerReward
|
|
},
|
|
data() {
|
|
return {
|
|
allowRegister: true, // 是否允许注册
|
|
registerMode: 'account',
|
|
formData: {
|
|
mobile: '',
|
|
account: '',
|
|
password: '',
|
|
rePassword: '',
|
|
rCode: '', //推荐码
|
|
vercode: '',
|
|
dynacode: '',
|
|
key: ''
|
|
},
|
|
regisiterAgreement: {
|
|
// 注册协议
|
|
title: '',
|
|
content: ''
|
|
},
|
|
captcha: {
|
|
// 验证码
|
|
id: '',
|
|
img: ''
|
|
},
|
|
isSub: false,
|
|
back: '', // 返回页
|
|
dynacodeData: {
|
|
seconds: 120,
|
|
timer: null,
|
|
codeText: '获取动态码',
|
|
isSend: false
|
|
},
|
|
registerConfig: {
|
|
register: ''
|
|
},
|
|
authInfo: null
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
if (option.back) this.back = option.back;
|
|
this.getCaptcha();
|
|
this.getRegisiterAggrement();
|
|
this.getRegisterConfig();
|
|
if (uni.getStorageSync('authInfo')) {
|
|
this.authInfo = uni.getStorageSync('authInfo');
|
|
}
|
|
if(uni.getStorageSync('source_member')){
|
|
this.source_member=uni.getStorageSync('source_member');
|
|
}
|
|
//分享接收source_member
|
|
if (option.source_member){
|
|
uni.setStorageSync('source_member', option.source_member);
|
|
this.source_member=uni.getStorageSync('source_member');
|
|
}
|
|
if (option.rcode) uni.setStorageSync('rcode', option.rcode);
|
|
this.formData.rCode = option.rcode || uni.getStorageSync('rcode');
|
|
if(this.source_member > 0) this.getRecommendationCode();
|
|
},
|
|
onShow() {
|
|
|
|
},
|
|
onReady() {
|
|
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
|
},
|
|
methods: {
|
|
getRecommendationCode(){
|
|
this.$api.sendRequest({
|
|
url: '/member/api/member/RecommendationCode',
|
|
data:{ source_member: this.source_member },
|
|
success: res => {
|
|
if(res.code === 0){
|
|
this.formData.rCode = res.data;
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 切换注册方式
|
|
*/
|
|
switchRegisterMode() {
|
|
this.registerMode = this.registerMode == 'mobile' ? 'account' : 'mobile';
|
|
},
|
|
/**
|
|
* 展示注册协议
|
|
*/
|
|
openPopup() {
|
|
this.$refs.registerPopup.open();
|
|
},
|
|
/**
|
|
* 点击关闭协议
|
|
*/
|
|
toClose() {
|
|
this.$refs.registerPopup.close();
|
|
},
|
|
/**
|
|
* 获取注册协议
|
|
*/
|
|
getRegisiterAggrement() {
|
|
this.$api.sendRequest({
|
|
url: '/api/register/aggrement',
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.regisiterAgreement = res.data;
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 获取注册配置
|
|
*/
|
|
getRegisterConfig() {
|
|
this.$api.sendRequest({
|
|
url: '/api/register/config',
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.registerConfig = res.data.value;
|
|
if (this.registerConfig.register == '') {
|
|
this.$util.showToast({ title: '平台未启用注册!' });
|
|
setTimeout(() => {
|
|
this.$util.redirectTo('/pages/index/index');
|
|
}, 1000);
|
|
} else if (this.registerConfig.register.indexOf('username') != -1) {
|
|
this.registerMode = 'account';
|
|
} else {
|
|
this.registerMode = 'mobile';
|
|
}
|
|
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 获取验证码
|
|
*/
|
|
getCaptcha() {
|
|
this.$api.sendRequest({
|
|
url: '/api/captcha/captcha',
|
|
data: {
|
|
captcha_id: this.captcha.id
|
|
},
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.captcha = res.data;
|
|
this.captcha.img = this.captcha.img.replace(/\r\n/g, '');
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 注册
|
|
*/
|
|
register() {
|
|
if (this.registerMode == 'account') {
|
|
var url = '/api/register/username';
|
|
data = {
|
|
username: this.formData.account,
|
|
password: this.formData.password,
|
|
rCode: this.formData.rCode
|
|
};
|
|
} else {
|
|
var url = '/api/register/mobile',
|
|
data = {
|
|
mobile: this.formData.mobile,
|
|
key: this.formData.key,
|
|
password: this.formData.password,
|
|
rCode: this.formData.rCode,
|
|
code: this.formData.dynacode
|
|
};
|
|
}
|
|
if (this.captcha.id != '') {
|
|
data.captcha_id = this.captcha.id;
|
|
data.captcha_code = this.formData.vercode;
|
|
}
|
|
if (this.authInfo) {
|
|
Object.assign(data, this.authInfo);
|
|
if (this.authInfo.nickName) data.nickname = this.authInfo.nickName;
|
|
if (this.authInfo.avatarUrl) data.headimg = this.authInfo.avatarUrl;
|
|
}
|
|
if (uni.getStorageSync('source_member')) data.source_member = uni.getStorageSync('source_member');
|
|
|
|
if (this.verify(data)) {
|
|
if (this.isSub) return;
|
|
this.isSub = true;
|
|
this.$api.sendRequest({
|
|
url,
|
|
data,
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
uni.setStorage({
|
|
key: 'token',
|
|
data: res.data.token,
|
|
success: () => {
|
|
let back = this.back ? this.back : '/pages/member/index';
|
|
this.$util.showToast({
|
|
title: '注册成功'
|
|
});
|
|
this.$refs.registerReward.open(back);
|
|
}
|
|
});
|
|
} else {
|
|
this.isSub = false;
|
|
this.getCaptcha();
|
|
this.$util.showToast({
|
|
title: res.message
|
|
});
|
|
}
|
|
},
|
|
fail: res => {
|
|
this.isSub = false;
|
|
this.getCaptcha();
|
|
}
|
|
});
|
|
}
|
|
},
|
|
verify(data) {
|
|
// 手机号注册
|
|
var user_test = /^[A-Za-z0-9]+$/;
|
|
if (this.registerMode == 'mobile') {
|
|
var rule = [{ name: 'mobile', checkType: 'required', errorMsg: '请输入手机号' }, { name: 'mobile', checkType: 'phoneno', errorMsg: '请输入正确的手机号' }];
|
|
if (this.captcha.id != '') rule.push({ name: 'captcha_code', checkType: 'required', errorMsg: this.$lang('captchaPlaceholder') });
|
|
rule.push({ name: 'code', checkType: 'required', errorMsg: this.$lang('dynacodePlaceholder') });
|
|
}
|
|
// 用户名注册
|
|
if (this.registerMode == 'account') {
|
|
var rule = [{ name: 'username', checkType: 'required', errorMsg: '请输入账号' }, { name: 'password', checkType: 'required', errorMsg: '请输入密码' }],
|
|
regConfig = this.registerConfig;
|
|
|
|
if (!user_test.test(data.username)) {
|
|
this.$util.showToast({
|
|
title: '用户名只能输入数字跟英文'
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (regConfig.pwd_len > 0) {
|
|
rule.push({
|
|
name: 'password',
|
|
checkType: 'lengthMin',
|
|
checkRule: regConfig.pwd_len,
|
|
errorMsg: '密码长度不能小于' + regConfig.pwd_len + '位'
|
|
});
|
|
}
|
|
if (regConfig.pwd_complexity != '') {
|
|
let passwordErrorMsg = '密码需包含',
|
|
reg = '';
|
|
if (regConfig.pwd_complexity.indexOf('number') != -1) {
|
|
reg += '(?=.*?[0-9])';
|
|
passwordErrorMsg += '数字';
|
|
}
|
|
if (regConfig.pwd_complexity.indexOf('letter') != -1) {
|
|
reg += '(?=.*?[a-z])';
|
|
passwordErrorMsg += '、小写字母';
|
|
}
|
|
if (regConfig.pwd_complexity.indexOf('upper_case') != -1) {
|
|
reg += '(?=.*?[A-Z])';
|
|
passwordErrorMsg += '、大写字母';
|
|
}
|
|
if (regConfig.pwd_complexity.indexOf('symbol') != -1) {
|
|
reg += '(?=.*?[#?!@$%^&*-])';
|
|
passwordErrorMsg += '、特殊字符';
|
|
}
|
|
rule.push({
|
|
name: 'password',
|
|
checkType: 'reg',
|
|
checkRule: reg,
|
|
errorMsg: passwordErrorMsg
|
|
});
|
|
}
|
|
if (this.formData.password != this.formData.rePassword) {
|
|
this.$util.showToast({
|
|
title: '两次密码不一致'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.captcha.id != '') rule.push({ name: 'captcha_code', checkType: 'required', errorMsg: this.$lang('captchaPlaceholder') });
|
|
}
|
|
var checkRes = validate.check(data, rule);
|
|
if (checkRes) {
|
|
return true;
|
|
} else {
|
|
this.$util.showToast({
|
|
title: validate.error
|
|
});
|
|
return false;
|
|
}
|
|
},
|
|
/**
|
|
* 去登录
|
|
*/
|
|
toLogin() {
|
|
if (this.back) this.$util.redirectTo('/pages_tool/login/login', { back: encodeURIComponent(this.back) });
|
|
else this.$util.redirectTo('/pages_tool/login/login');
|
|
},
|
|
/**
|
|
* 发送手机动态码
|
|
*/
|
|
sendMobileCode() {
|
|
if (this.dynacodeData.seconds != 120 || this.dynacodeData.isSend) return;
|
|
var data = {
|
|
mobile: this.formData.mobile,
|
|
captcha_id: this.captcha.id,
|
|
captcha_code: this.formData.vercode
|
|
};
|
|
var rule = [
|
|
{ name: 'mobile', checkType: 'required', errorMsg: '请输入手机号' },
|
|
{ name: 'mobile', checkType: 'phoneno', errorMsg: '请输入正确的手机号' },
|
|
{ name: 'captcha_code', checkType: 'required', errorMsg: '请输入验证码' }
|
|
];
|
|
var checkRes = validate.check(data, rule);
|
|
if (!checkRes) {
|
|
this.$util.showToast({ title: validate.error });
|
|
return;
|
|
}
|
|
this.dynacodeData.isSend = true;
|
|
|
|
this.dynacodeData.timer = setInterval(() => {
|
|
this.dynacodeData.seconds--;
|
|
this.dynacodeData.codeText = this.dynacodeData.seconds + 's后可重新获取';
|
|
}, 1000);
|
|
|
|
this.$api.sendRequest({
|
|
url: '/api/register/mobileCode',
|
|
data: data,
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.formData.key = res.data.key;
|
|
} else {
|
|
this.$util.showToast({ title: res.message });
|
|
this.refreshDynacodeData();
|
|
}
|
|
},
|
|
fail: () => {
|
|
this.$util.showToast({ title: 'request:fail' });
|
|
this.refreshDynacodeData();
|
|
}
|
|
});
|
|
},
|
|
refreshDynacodeData(){
|
|
this.getCaptcha();
|
|
clearInterval(this.dynacodeData.timer);
|
|
this.dynacodeData = {
|
|
seconds: 120,
|
|
timer: null,
|
|
codeText: '获取动态码',
|
|
isSend: false
|
|
};
|
|
}
|
|
},
|
|
watch: {
|
|
'dynacodeData.seconds': {
|
|
handler(newValue, oldValue) {
|
|
if (newValue == 0) {
|
|
this.refreshDynacodeData();
|
|
}
|
|
},
|
|
immediate: true,
|
|
deep: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './public/css/common.scss';
|
|
</style>
|
|
<style scoped lang="scss">
|
|
.conten-box {
|
|
padding: 0 30rpx 30rpx;
|
|
.title {
|
|
text-align: center;
|
|
margin-top: 50rpx;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.close {
|
|
position: absolute;
|
|
right: 30rpx;
|
|
top: 10rpx;
|
|
}
|
|
.con {
|
|
height: 500rpx;
|
|
}
|
|
}
|
|
/deep/ .reward-popup .uni-popup__wrapper-box {
|
|
background: none !important;
|
|
max-width: unset !important;
|
|
max-height: unset !important;
|
|
overflow: unset !important;
|
|
}
|
|
</style>
|