612 lines
14 KiB
Vue
612 lines
14 KiB
Vue
<template>
|
||
<view class="container">
|
||
|
||
<view class="wrapper">
|
||
<view class="input-content">
|
||
<view class="cu-form-group"
|
||
style="border: 2upx solid whitesmoke;margin-bottom: 20px;border-radius: 30px">
|
||
<view class="title">手机号</view>
|
||
<input type="number" :value="mobile" placeholder="请输入手机号" maxlength="11" data-key="mobile"
|
||
@input="inputChange" />
|
||
</view>
|
||
<view class="cu-form-group" style="border: 2upx solid whitesmoke;border-radius: 30px">
|
||
<view class="title">密
|
||
<text style="margin-left: 30rpx;">码</text>
|
||
</view>
|
||
<input type="password" placeholder="请输入密码" maxlength="20" :value="code" data-key="code"
|
||
@input="inputChange" @confirm="toLogin" />
|
||
<text class="send-msg" @click="forget">忘记密码</text>
|
||
</view>
|
||
</view>
|
||
<button class="confirm-btn" @click="toLogin">登录</button>
|
||
|
||
<view style="margin-top: 32px;text-align: center">
|
||
<view>
|
||
没有账号?
|
||
<text style="color: #ff7581" @click="register()">立即注册</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="footer">
|
||
<u-checkbox-group>
|
||
<u-checkbox v-model="checked" label-size='24upx' shape="circle" @change="radioChange"></u-checkbox>
|
||
</u-checkbox-group>
|
||
<view>同意</view>
|
||
<!-- 协议地址 -->
|
||
<navigator url="/me/setting/mimi" open-type="navigate">《隐私政策》</navigator>
|
||
和
|
||
<navigator url="/me/setting/xieyi" open-type="navigate">《用户服务协议》</navigator>
|
||
</view>
|
||
<u-toast ref="uToast" />
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
mobile: '',
|
||
code: '',
|
||
sessionkey: '',
|
||
flag: '1',
|
||
weixinPhone: false,
|
||
sending: false,
|
||
sendDataList: {},
|
||
phone: '',
|
||
sendTime: '获取验证码',
|
||
count: 60,
|
||
checked: false
|
||
};
|
||
},
|
||
onLoad() {
|
||
if (uni.getStorageSync('isSafeView')) {
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '您正在使用无痕浏览,可能导致登录状态失效,建议切换浏览模式',
|
||
})
|
||
uni.setStorageSync("isSafeView", null)
|
||
}
|
||
},
|
||
methods: {
|
||
// 注册
|
||
register() {
|
||
uni.navigateTo({
|
||
url: '/pages/login/register'
|
||
});
|
||
},
|
||
// 忘记密码
|
||
forget() {
|
||
uni.navigateTo({
|
||
url: '/pages/login/forgetPwd'
|
||
});
|
||
},
|
||
inputChange(e) {
|
||
const key = e.currentTarget.dataset.key;
|
||
this[key] = e.detail.value;
|
||
},
|
||
radioChange(e) {
|
||
console.log(e);
|
||
},
|
||
//第一授权获取用户信息===》按钮触发
|
||
wxGetUserInfo(e) {
|
||
let that = this;
|
||
if (this.checked) {
|
||
wx.getUserProfile({
|
||
desc: '业务需要',
|
||
success: infoRes => {
|
||
console.log("infoRes.encryptedData__________:" + JSON.stringify(infoRes.userInfo))
|
||
let nickName = infoRes.userInfo.nickName; //昵称
|
||
let avatarUrl = infoRes.userInfo.avatarUrl; //头像
|
||
let sex = infoRes.userInfo.gender; //头像
|
||
try {
|
||
that.login(nickName, avatarUrl, sex);
|
||
} catch (e) {}
|
||
}
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
title: '请同意隐私政策和用户服务协议',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
//登录
|
||
login(nickName, avatarUrl, sex) {
|
||
let that = this;
|
||
// 1.wx获取登录用户code
|
||
uni.login({
|
||
provider: 'weixin',
|
||
success: function(loginRes) {
|
||
let data = {
|
||
code: loginRes.code
|
||
}
|
||
that.$u.api.wxLogin(data).then(res => {
|
||
if (res.code == 0 && res.data) {
|
||
uni.setStorageSync('openId', res.data.open_id)
|
||
uni.setStorageSync('unionId', res.data.unionId)
|
||
that.sessionkey = res.data.session_key;
|
||
|
||
let invitationCode = '';
|
||
if (uni.getStorageSync('invitation')) {
|
||
invitationCode = uni.getStorageSync('invitation')
|
||
}
|
||
let sendData = {
|
||
openId: uni.getStorageSync('openId'),
|
||
unionId: uni.getStorageSync('unionId'),
|
||
userName: nickName,
|
||
avatar: avatarUrl,
|
||
sex: sex, //性别
|
||
inviterCode: invitationCode //别人登录进来携带你的邀请码
|
||
};
|
||
that.sendDataList = sendData;
|
||
that.flag = res.data.flag;
|
||
if (that.flag == '1') {
|
||
that.weixinPhone = true;
|
||
} else {
|
||
that.getWeixinInfo(sendData);
|
||
}
|
||
} else {
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: res.msg,
|
||
duration: 2000
|
||
});
|
||
}
|
||
})
|
||
|
||
}
|
||
});
|
||
},
|
||
//小程序微信登录后获取手机号
|
||
getPhoneNumber: function(e) {
|
||
if (e.detail.errMsg == 'getPhoneNumber:fail user deny') {
|
||
console.log('用户拒绝提供手机号');
|
||
} else {
|
||
console.log('用户同意提供手机号');
|
||
this.setPhoneByInsert(e.detail.encryptedData, e.detail.iv);
|
||
}
|
||
},
|
||
//小程序微信登录后获取手机号
|
||
setPhoneByInsert(decryptData, iv) {
|
||
let data = {
|
||
decryptData: decryptData,
|
||
key: this.sessionkey,
|
||
iv: iv
|
||
};
|
||
|
||
this.$u.api.selectPhone(data).then(res => {
|
||
if (res.code == 0) {
|
||
this.phone = res.data.phoneNumber;
|
||
this.getWeixinInfo(this.sendDataList);
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg,
|
||
duration: 2000
|
||
});
|
||
}
|
||
})
|
||
},
|
||
countDown() {
|
||
const {
|
||
count
|
||
} = this;
|
||
if (count === 1) {
|
||
this.count = 60;
|
||
this.sending = false;
|
||
this.sendTime = '获取验证码'
|
||
} else {
|
||
this.count = count - 1;
|
||
this.sending = true;
|
||
this.sendTime = count - 1 + '秒后重新获取';
|
||
setTimeout(this.countDown.bind(this), 1000);
|
||
}
|
||
},
|
||
sendMsg() {
|
||
const {
|
||
mobile
|
||
} = this;
|
||
console.log(mobile)
|
||
if (!mobile) {
|
||
uni.showToast({
|
||
title: '请输入手机号',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
} else if (mobile.length !== 11) {
|
||
uni.showToast({
|
||
title: '请输入正确的手机号',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
} else {
|
||
uni.showLoading({
|
||
title: '正在发送验证码...'
|
||
})
|
||
this.$u.get('/app/Login/sendMsg/' + mobile + '/login').then(res => {
|
||
// this.$Request.getT('/appLogin/sendMsg/' + mobile + '/bind').then(res => {
|
||
if (res.code === 0) {
|
||
this.sending = true;
|
||
uni.showToast({
|
||
title: '验证码发送成功请注意查收',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
this.countDown();
|
||
uni.hideLoading();
|
||
} else {
|
||
uni.hideLoading();
|
||
uni.showModal({
|
||
showCancel: false,
|
||
title: '短信发送失败',
|
||
content: res.msg ? res.msg : '请一分钟后再获取验证码'
|
||
});
|
||
}
|
||
});
|
||
}
|
||
},
|
||
toLogin() {
|
||
// this.$queue.loginClear();
|
||
// let openid = this.$queue.getData('openid');
|
||
if (!this.checked) {
|
||
return this.$refs.uToast.show({
|
||
title: '请阅读并同意《隐私政策》和《用户服务协议》',
|
||
duration: 1500
|
||
})
|
||
}
|
||
|
||
let openid = uni.getStorageSync('openId')
|
||
const {
|
||
mobile,
|
||
code
|
||
} = this;
|
||
if (!mobile) {
|
||
// this.$queue.showToast('请输入手机号');
|
||
uni.showToast({
|
||
title: '请输入手机号',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
} else if (mobile.length != 11) {
|
||
// this.$queue.showToast('请输入手机号');
|
||
uni.showToast({
|
||
title: '请输入正确的手机号',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
} else if (!code) {
|
||
// this.$queue.showToast('请输入密码');
|
||
uni.showToast({
|
||
title: '请输入密码',
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
} else {
|
||
uni.showLoading({
|
||
title: '正在登录中...',
|
||
})
|
||
this.$u.post('/app/Login/registerCode?password=' + code + '&phone=' + mobile).then(res => {
|
||
if (res.code === 0) {
|
||
uni.setStorageSync('token', res.token)
|
||
uni.setStorageSync('userId', res.user.userId)
|
||
uni.setStorageSync('userName', res.user.userName)
|
||
uni.setStorageSync('avatar', res.user.avatar ? res.user.avatar :
|
||
'../../static/images/logo.png')
|
||
uni.setStorageSync('phone', res.user.phone)
|
||
uni.setStorageSync('invitationCode', res.user.invitationCode)
|
||
uni.setStorageSync('sex', res.user.sex)
|
||
uni.setStorageSync('userId', res.user.userId)
|
||
//设置渠道码
|
||
if (res.user.qdCode) {
|
||
uni.setStorageSync('qdCode', res.user.qdCode)
|
||
}
|
||
// uni.setStorageSync('openId', res.user.openId)
|
||
// this.getWeixinInfo(this.sendDataList);
|
||
uni.showToast({
|
||
title: '登录成功',
|
||
icon: 'none'
|
||
})
|
||
const arr= getCurrentPages()
|
||
if(arr.length<=1){
|
||
return uni.reLaunch({
|
||
url:'/pages/index/index'
|
||
})
|
||
}
|
||
uni.navigateBack({
|
||
delta: arr.length<=2?1:2
|
||
})
|
||
} else {
|
||
uni.hideLoading();
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none',
|
||
duration: 1000
|
||
})
|
||
}
|
||
});
|
||
}
|
||
},
|
||
//获取个人信息
|
||
getWeixinInfo(sendData) {
|
||
let that = this;
|
||
uni.showLoading({
|
||
title: '登录中...'
|
||
});
|
||
let postData = {
|
||
openId: sendData.openId, //小程序openId
|
||
unionId: sendData.unionId, //unionId
|
||
userName: sendData.userName, //微信名称
|
||
avatar: sendData.avatar, //头像
|
||
sex: sendData.sex, //性别
|
||
phone: that.phone,
|
||
inviterCode: sendData.inviterCode
|
||
};
|
||
that.$u.api.insertWxUser(postData).then(res => {
|
||
uni.hideLoading();
|
||
if (res.code == 0) {
|
||
uni.setStorageSync('token', res.token)
|
||
uni.setStorageSync('userName', res.user.userName)
|
||
uni.setStorageSync('avatar', res.user.avatar)
|
||
uni.setStorageSync('phone', res.user.phone)
|
||
uni.setStorageSync('invitationCode', res.user.invitationCode)
|
||
uni.setStorageSync('sex', res.user.sex)
|
||
uni.setStorageSync('userId', res.user.userId)
|
||
uni.setStorageSync('openId', res.user.openId)
|
||
let data = {
|
||
userId: uni.getStorageSync('userId')
|
||
}
|
||
that.$u.api.userVip(data).then(res => {
|
||
if (res.code == 0 && res.data && res.data.isVip == 2) {
|
||
uni.setStorageSync('isVIP', true)
|
||
} else {
|
||
uni.setStorageSync('isVIP', false)
|
||
}
|
||
})
|
||
uni.navigateBack();
|
||
} else {
|
||
uni.showModal({
|
||
showCancel: false,
|
||
title: '登录失败',
|
||
content: res.msg,
|
||
});
|
||
}
|
||
})
|
||
},
|
||
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.headers {
|
||
text-align: center;
|
||
}
|
||
|
||
.headers>image {
|
||
width: 400upx;
|
||
height: 400upx;
|
||
}
|
||
|
||
.footer {
|
||
padding-left: 150rpx;
|
||
margin-top: 32upx;
|
||
font-size: 24upx;
|
||
color: #666666;
|
||
text-align: center;
|
||
display: flex;
|
||
}
|
||
|
||
page {
|
||
background: #ffffff;
|
||
}
|
||
|
||
.send-msg {
|
||
border-radius: 30px;
|
||
color: black;
|
||
background: white;
|
||
height: 30px;
|
||
font-size: 14px;
|
||
line-height: 30px;
|
||
}
|
||
|
||
.container {
|
||
top: 0;
|
||
padding-top: 32upx;
|
||
position: relative;
|
||
width: 100%;
|
||
height: 100%;
|
||
overflow: hidden;
|
||
background: #ffffff;
|
||
|
||
.mp_wxBox {
|
||
.headers {
|
||
margin: 35% auto 50rpx;
|
||
text-align: center;
|
||
border-radius: 60rpx;
|
||
width: 650rpx;
|
||
height: 300rpx;
|
||
line-height: 450rpx;
|
||
|
||
image {
|
||
width: 300rpx;
|
||
height: 300rpx;
|
||
}
|
||
}
|
||
|
||
.content {
|
||
text-align: center;
|
||
}
|
||
|
||
text {
|
||
display: block;
|
||
color: #9d9d9d;
|
||
margin-top: 40rpx;
|
||
}
|
||
|
||
.bottom {
|
||
line-height: 80upx;
|
||
border-radius: 80upx;
|
||
margin: 70rpx 50rpx;
|
||
height: 80upx;
|
||
font-size: 35rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.wrapper {
|
||
position: relative;
|
||
z-index: 90;
|
||
background: #ffffff;
|
||
padding-bottom: 20px;
|
||
}
|
||
|
||
// .back-btn {
|
||
// position: absolute;
|
||
// left: 20px;
|
||
// z-index: 9999;
|
||
// padding-top: var(--status-bar-height);
|
||
// top: 20px;
|
||
// font-size: 20px;
|
||
// color: $font-color-dark;
|
||
// }
|
||
|
||
// .left-top-sign {
|
||
// font-size: 80px;
|
||
// color: $page-color-base;
|
||
// position: relative;
|
||
// }
|
||
|
||
// .right-top-sign {
|
||
// position: absolute;
|
||
// top: 40px;
|
||
// right: -15px;
|
||
// z-index: 95;
|
||
|
||
// &:before,
|
||
// &:after {
|
||
// display: block;
|
||
// content: '';
|
||
// width: 20px;
|
||
// height: 40px;
|
||
// background: #e10a07;
|
||
// }
|
||
|
||
// &:before {
|
||
// transform: rotate(50deg);
|
||
// border-radius: 0 50px 0 0;
|
||
// }
|
||
|
||
// &:after {
|
||
// position: absolute;
|
||
// right: -198px;
|
||
// top: 0;
|
||
// transform: rotate(-50deg);
|
||
// border-radius: 50px 0 0 0;
|
||
// /* background: pink; */
|
||
// }
|
||
// }
|
||
|
||
// .left-bottom-sign {
|
||
// position: absolute;
|
||
// left: -270px;
|
||
// bottom: -320px;
|
||
// /*border: 100upx solid #d0d1fd;*/
|
||
// border-radius: 50%;
|
||
// padding: 90px;
|
||
// }
|
||
|
||
// .welcome {
|
||
// position: relative;
|
||
// left: 30px;
|
||
// top: -55px;
|
||
// font-size: 28px;
|
||
// color: #555;
|
||
// text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
|
||
// }
|
||
|
||
.input-content {
|
||
padding: 0 20px;
|
||
}
|
||
|
||
// .input-item {
|
||
// display: flex;
|
||
// flex-direction: column;
|
||
// align-items: flex-start;
|
||
// justify-content: center;
|
||
// padding: 0 30px;
|
||
// background: $page-color-light;
|
||
// height: 64px;
|
||
// border-radius: 4px;
|
||
// margin-bottom: 30px;
|
||
|
||
// &:last-child {
|
||
// margin-bottom: 0;
|
||
// }
|
||
|
||
// .tit {
|
||
// height: 30px;
|
||
// line-height: 28px;
|
||
// font-size: $font-sm + 2upx;
|
||
// color: $font-color-base;
|
||
// }
|
||
|
||
// input {
|
||
// height: 40px;
|
||
// font-size: $font-base + 2upx;
|
||
// color: $font-color-dark;
|
||
// width: 100%;
|
||
// }
|
||
// }
|
||
|
||
.confirm-btn {
|
||
width: 300px;
|
||
height: 42px;
|
||
line-height: 42px;
|
||
border-radius: 30px;
|
||
margin-top: 40px;
|
||
// background: linear-gradient(to left, #3f5ecb 0, #5074FF 100%);
|
||
background: #ff7581;
|
||
color: #ffffff;
|
||
// font-size: $font-lg;
|
||
|
||
&:after {
|
||
border-radius: 60px;
|
||
}
|
||
}
|
||
|
||
// .confirm-btn1 {
|
||
// width: 300px;
|
||
// height: 42px;
|
||
// line-height: 42px;
|
||
// border-radius: 30px;
|
||
// margin-top: 40px;
|
||
// background: whitesmoke;
|
||
// color: grey;
|
||
// font-size: $font-lg;
|
||
|
||
// &:after {
|
||
// border-radius: 60px;
|
||
// }
|
||
// }
|
||
|
||
// .forget-section {
|
||
// font-size: $font-sm + 2upx;
|
||
// color: $font-color-spec;
|
||
// text-align: center;
|
||
// margin-top: 40px;
|
||
// }
|
||
|
||
// .register-section {
|
||
// left: 0;
|
||
// margin-top: 30px;
|
||
// bottom: 30px;
|
||
// width: 100%;
|
||
// font-size: $font-sm + 2upx;
|
||
// color: $font-color-base;
|
||
// text-align: center;
|
||
|
||
// text {
|
||
// color: $font-color-spec;
|
||
// margin-left: 10px;
|
||
// }
|
||
// }
|
||
</style> |