bike/pages/login/login.vue

177 lines
3.9 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
<view class="page">
2024-06-20 18:08:54 +08:00
<!-- <u-navbar :is-back="false" :title="tittxt" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' height='45' >
2024-05-08 23:18:30 +08:00
2024-06-20 18:08:54 +08:00
</u-navbar> -->
2024-05-08 23:18:30 +08:00
<view class="imgbox">
2024-06-20 18:08:54 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uzg30jo8Mx7lgaRHFyiO" mode=""></image>
2024-05-08 23:18:30 +08:00
</view>
<button class="button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" >
授权登录
</button>
2024-06-20 18:08:54 +08:00
<view class="button1" @click="back">
取消登录
</view>
2024-05-08 23:18:30 +08:00
<!-- <view class="tip">
<image src="https://api.ccttiot.com/smartmeter/img/static/u4LEl3cUFgF9uN30ESnF" mode=""></image>
我已同意并阅读服务条款法律条款及隐私政策
</view> -->
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
tittxt:"登录",
chooseType:true,
usertype:'',
login:false
}
},
methods: {
userType(num){
this.chooseType=false
this.login=true
if(num==1){
this.usertype='01'
}else{
this.usertype='00'
}
},
2024-06-20 18:08:54 +08:00
back(){
uni.navigateBack({
delta: 1 // delta值为1时表示返回的页面层数
});
},
2024-05-08 23:18:30 +08:00
getPhoneNumber(e) {
let that = this;
console.log("eeeeeeee", e);
const wxLoginAsync = () => {
return new Promise((resolve, reject) => {
wx.login({
success(res) {
if (res.code) {
console.log('登录!', res);
let data = {
jscode: res.code,
// userType: that.usertype,
mobileCode: e.detail.code,
};
resolve(data);
} else {
reject(res.errMsg);
}
},
fail(err) {
reject(err);
}
});
});
};
wxLoginAsync()
.then(async (data) => {
2024-05-28 17:48:29 +08:00
let areaId=uni.getStorageSync('areaId');
this.$u.post("/wxlogin?mobileCode="+data.mobileCode+'&jsCode='+data.jscode+'&areaId='+areaId).then((res) => {
2024-05-08 23:18:30 +08:00
// this.$forceUpdate()
if (res.code == 200) {
console.log(res,'resres');
wx.setStorageSync('token', res.token);
that.ceshi()
// uni.switchTab({
// url: '/pages/index/index'
// })
2024-05-31 17:54:23 +08:00
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
2024-05-08 23:18:30 +08:00
});
})
.catch((err) => {
console.error(err);
});
},
async ceshi() {
this.$u.get("/getAppInfo").then((res) => {
console.log('进入跳转');
uni.navigateTo({
url: '/pages/index/index'
})
});
},
}
}
</script>
<style lang="scss" >
page{
background: #FFFFFF;
}
.page {
position: relative; /* 添加相对定位 */
}
.imgbox {
2024-06-20 18:08:54 +08:00
margin-top:0rpx ;
width: 750rpx;
height: 734rpx;
2024-05-08 23:18:30 +08:00
z-index: 0;
image {
2024-06-20 18:08:54 +08:00
width: 750rpx;
height: 734rpx;
2024-05-08 23:18:30 +08:00
}
}
.button{
margin-top: 200rpx;
width: 586rpx;
height: 90rpx;
background: #4C97E7;
border-radius: 54rpx 54rpx 54rpx 54rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
2024-06-20 18:08:54 +08:00
.button1{
margin: 72rpx auto;
display: flex;
align-items: center;
justify-content: center;
width: 586rpx;
height: 90rpx;
background: #fff;
border-radius: 54rpx 54rpx 54rpx 54rpx;
border: 4rpx solid #4C97E7;
font-weight: 500;
font-size: 40rpx;
color: #4C97E7;
}
2024-05-08 23:18:30 +08:00
.tip{
margin-top:128rpx ;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 20rpx;
color: #979797;
image{
width: 26rpx;
height: 26rpx;
}
}
</style>