You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
307 lines
7.8 KiB
307 lines
7.8 KiB
<template>
|
|
<view>
|
|
<view v-if="type == 1">
|
|
<image mode="widthFix" class="width90 mart20" v-if="user && user.infoCompleteStatus == 1"
|
|
:src="imagewxUrl+imgadres"></image>
|
|
<image mode="widthFix" class="width90 mart20" v-if="!user" :src="imagewxUrl+imgadres1"></image>
|
|
<!-- #ifdef MP -->
|
|
<view class="mart30 width90 height50 fcorfff backcor008 fotct btns font16 fontlet"
|
|
v-if="user && user.infoCompleteStatus == 1" @click="getuserinfo">
|
|
授权并登录</view>
|
|
<button class="mart30 width90 height50 fcorfff backcor008 fotct btns font16 fontlet" v-if="!user"
|
|
open-type="getPhoneNumber" @getphonenumber="loginByPhone">授权手机号</button>
|
|
<view class="mart20 width90 font15 fcor666 fotct" @click="updateStu(2)">手机短信登录</view>
|
|
<!-- <button class="mart30 width90 height50 fcorfff backcor008 fotct btns font16" v-if="user.phone && user"
|
|
@click="reqmessage">授权获取消息通知</button> -->
|
|
<!-- #endif -->
|
|
<!-- #ifdef H5 -->
|
|
<button class="mart30 width90 height50 fcorfff backcor008 fotct btns font16"
|
|
@click="getH5userinfo">授权并登录</button>
|
|
<!-- #endif -->
|
|
</view>
|
|
<view v-if="type == 2">
|
|
<view class="logo">
|
|
<view class="img">
|
|
<image mode="widthFix"
|
|
src="">
|
|
</image>
|
|
</view>
|
|
</view>
|
|
<view class="form re" style="top:200rpx;">
|
|
<view class="username">
|
|
<view class="get-code" style="color: #676767;" @click.stop="getCode()">{{getCodeText}}</view>
|
|
<input placeholder="请输入手机号" v-model="phoneNumber" placeholder-style="color: #676767;" />
|
|
</view>
|
|
<view class="code">
|
|
<input placeholder="请输入验证码" v-model="code" placeholder-style="color: #676767;" />
|
|
</view>
|
|
<view class="btn mart50" @tap="doReg">立即登录</view>
|
|
<view class="width90 marb20 font15 fcor666 fotct" @click="updateStu(1)">微信授权登录</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
const app = getApp();
|
|
import {
|
|
getUserInfo,
|
|
loginByPhone,
|
|
HandleCode,
|
|
loginByTel,
|
|
sendSmsCodeByHw
|
|
} from "../../Utils/Api.js"
|
|
export default {
|
|
data() {
|
|
return {
|
|
user: '',
|
|
imagewxUrl: app.globalData.imageWxImg,
|
|
imgadres: 'login.png',
|
|
imgadres1: 'loginphone.png',
|
|
phoneNumber: "",
|
|
code: '',
|
|
getCodeText: '获取验证码',
|
|
getCodeisWaiting: false,
|
|
type: 1 // 区分登录方式
|
|
}
|
|
},
|
|
onLoad() {
|
|
// #ifdef MP
|
|
if (!app.globalData.openId) {
|
|
uni.login({
|
|
provider: 'weixin',
|
|
success: function(loginRes) {
|
|
app.globalData.code = loginRes.code;
|
|
// 请求接口
|
|
let params = {
|
|
code: app.globalData.code
|
|
}
|
|
HandleCode(params).then(res => {
|
|
if (res.return_code == '000000') {
|
|
app.globalData.openId = res.return_data.openId;
|
|
}
|
|
})
|
|
},
|
|
})
|
|
}
|
|
// #endif
|
|
this.user = app.globalData.userInfo;
|
|
},
|
|
methods: {
|
|
getuserinfo() {
|
|
let that = this;
|
|
uni.getUserProfile({
|
|
desc: '登录中...',
|
|
success: function(res) {
|
|
let params = {
|
|
openId: app.globalData.openId,
|
|
iv: res.iv,
|
|
encryptedData: res.encryptedData
|
|
}
|
|
getUserInfo(params).then(res => {
|
|
if (res.return_code == '000000') {
|
|
app.globalData.userInfo = res.return_data
|
|
.object
|
|
.highUser;
|
|
that.user = res.return_data.object.highUser;
|
|
app.globalData.token = res.return_data.uniqueCode;
|
|
that.isShowAuth = false
|
|
uni.setStorage({
|
|
key: "user",
|
|
data: res.return_data
|
|
.object
|
|
.highUser
|
|
})
|
|
uni.setStorage({
|
|
key: "token",
|
|
data: res.return_data.uniqueCode
|
|
})
|
|
if (res.return_data.object.highUser.infoCompleteStatus == 0) {
|
|
uni.navigateBack({})
|
|
}
|
|
} else {
|
|
uni.showToast({
|
|
title: res.return_msg,
|
|
duration: 2000,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
});
|
|
},
|
|
fail: res => {
|
|
uni.showToast({
|
|
title: "微信登录授权失败",
|
|
icon: "none"
|
|
});
|
|
}
|
|
})
|
|
that.isShowAuth = false
|
|
},
|
|
// 微信获取手机号
|
|
loginByPhone(PhoneNumber) {
|
|
if (PhoneNumber.detail.iv == undefined) {
|
|
uni.showToast({
|
|
title: "用户取消授权",
|
|
icon: "none"
|
|
});
|
|
return;
|
|
}
|
|
let params = {
|
|
openId: app.globalData.openId,
|
|
iv: PhoneNumber.detail.iv,
|
|
encryptedData: PhoneNumber.detail.encryptedData
|
|
}
|
|
loginByPhone(params).then(res => {
|
|
if (res.return_code == '000000') {
|
|
uni.showToast({
|
|
title: '手机号授权成功',
|
|
icon: 'none',
|
|
duration: 2000
|
|
})
|
|
this.user = res.return_data.object.highUser;
|
|
app.globalData.token = res.return_data.uniqueCode;
|
|
app.globalData.userInfo = res.return_data
|
|
.object
|
|
.highUser;
|
|
uni.setStorage({
|
|
key: "user",
|
|
data: res.return_data
|
|
.object
|
|
.highUser
|
|
})
|
|
uni.setStorage({
|
|
key: "token",
|
|
data: res.return_data.uniqueCode
|
|
})
|
|
if (res.return_data.object.highUser.infoCompleteStatus == 0) {
|
|
uni.navigateBack({})
|
|
}
|
|
} else {
|
|
uni.showToast({
|
|
title: res.return_msg,
|
|
icon: "none",
|
|
duration: 2000
|
|
});
|
|
}
|
|
});
|
|
},
|
|
getH5userinfo() {
|
|
uni.navigateTo({
|
|
url: '/pages/login/register'
|
|
})
|
|
},
|
|
//改变登录方式
|
|
updateStu(item) {
|
|
this.type = item;
|
|
},
|
|
//发送短信
|
|
getCode() {
|
|
uni.hideKeyboard()
|
|
if (this.getCodeisWaiting) {
|
|
return;
|
|
}
|
|
if (!(/^1(3|4|5|6|7|8|9)\d{9}$/.test(this.phoneNumber))) {
|
|
uni.showToast({
|
|
title: '请填写正确手机号码',
|
|
icon: "none"
|
|
});
|
|
return false;
|
|
}
|
|
uni.showLoading({
|
|
title: '发送中...'
|
|
})
|
|
let params = {
|
|
phone: this.phoneNumber,
|
|
HWMSG:5
|
|
}
|
|
sendSmsCodeByHw(params).then(res => {
|
|
if (res.return_code == '000000') {
|
|
this.getCodeisWaiting = true;
|
|
uni.showToast({
|
|
title: '验证码已发送',
|
|
icon: "none"
|
|
});
|
|
this.setTimer();
|
|
} else {
|
|
uni.hideLoading()
|
|
}
|
|
})
|
|
},
|
|
setTimer() {
|
|
let holdTime = 60;
|
|
this.getCodeText = "重新获取(60)"
|
|
this.Timer = setInterval(() => {
|
|
if (holdTime <= 0) {
|
|
this.getCodeisWaiting = false;
|
|
this.getCodeBtnColor = "#ffffff";
|
|
this.getCodeText = "获取验证码"
|
|
clearInterval(this.Timer);
|
|
return;
|
|
}
|
|
this.getCodeText = "重新获取(" + holdTime + ")"
|
|
holdTime--;
|
|
|
|
}, 1000)
|
|
},
|
|
//手机短信登录
|
|
doReg() {
|
|
uni.hideKeyboard()
|
|
//模板示例部分验证规则
|
|
if (!(/^1(3|4|5|6|7|8|9)\d{9}$/.test(this.phoneNumber))) {
|
|
uni.showToast({
|
|
title: '请填写正确手机号码',
|
|
icon: "none"
|
|
});
|
|
return false;
|
|
}
|
|
if (!this.code) {
|
|
uni.showToast({
|
|
title: '请填写验证码',
|
|
icon: "none"
|
|
});
|
|
return false;
|
|
}
|
|
uni.showLoading({
|
|
title: '提交中...'
|
|
})
|
|
let params = {
|
|
phone: this.phoneNumber,
|
|
smsCode: this.code
|
|
}
|
|
loginByTel(params).then(res => {
|
|
uni.hideLoading()
|
|
if (res.return_code == '000000') {
|
|
app.globalData.token = res.return_data.uniqueCode;
|
|
app.globalData.userInfo = res.return_data
|
|
.object
|
|
.highUser;
|
|
uni.setStorage({
|
|
key: "user",
|
|
data: res.return_data
|
|
.object
|
|
.highUser
|
|
})
|
|
uni.setStorage({
|
|
key: "token",
|
|
data: res.return_data.uniqueCode
|
|
})
|
|
uni.navigateBack({})
|
|
} else {
|
|
uni.showToast({
|
|
title: res.return_msg,
|
|
icon: "none"
|
|
});
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "../../static/css/login.scss";
|
|
|
|
.btns {
|
|
border-radius: 6px;
|
|
}
|
|
</style>
|
|
|