SmartBeehive/pages/login/login.vue

263 lines
6.0 KiB
Vue
Raw Normal View History

2024-03-13 10:54:22 +08:00
<template>
<view class="page">
2024-07-01 10:06:13 +08:00
<!-- <u-navbar :is-back="false" :title="tittxt" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='36' >
2024-03-13 10:54:22 +08:00
2024-07-01 10:06:13 +08:00
</u-navbar> -->
<view class="page1" v-if="!ischeck">
<view class="tit">
请选择您的身份
</view>
<view class="cont" @click="type=1" :class="type==1? 'act1':'' " >
<view class="img">
<image src="https://api.ccttiot.com/smartmeter/img/static/u9G5tgpJskUSaT16Shn6" mode=""></image>
<view class="txt">
养蜂人
</view>
</view>
</view>
<view class="cont" @click="type=2" :class="type==2? 'act1':'' ">
<view class="img">
<image src="https://api.ccttiot.com/smartmeter/img/static/uko7p1h7VgRZgRlCotGY" mode=""></image>
<view class="txt">
认养用户
</view>
</view>
</view>
<view class="btn" @click="chck()">
确定
</view>
2024-03-13 10:54:22 +08:00
</view>
2024-07-01 10:06:13 +08:00
<view class="page2" v-if="ischeck">
<view class="img_box">
<image src="https://api.ccttiot.com/smartmeter/img/static/uko7p1h7VgRZgRlCotGY" mode=""></image>
</view>
<button class="button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" >
授权登录
</button>
2024-03-13 10:54:22 +08:00
</view>
2024-07-01 10:06:13 +08:00
<view class="inputbox" v-if="false">
2024-03-13 10:54:22 +08:00
<!-- 在这里放置你的输入框 -->
<view class="box1" v-if="chooseType">
<view class="input_txt">
首次使用请选择您的身份
</view>
<div class="button" style="margin-top: 162rpx;" @click="userType(1)">
我是房东
</div>
<div class="button" @click="userType(2)">
我是租户
</div>
</view>
2024-07-01 10:06:13 +08:00
<!-- <view class="box1" v-if="login">
2024-03-13 10:54:22 +08:00
<view class="input_txt" style="width: 536rpx;font-size: 24rpx;line-height: 32rpx;">
您暂未授权e租居小程序获取你的信息将无法正常使用小程序的功能如需要正常使用请点击授权按钮打开头像昵称等信息的授权
</view>
<button class="button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" style="margin-top: 330rpx;margin-left: -10rpx;" >
授权登录
</button>
2024-07-01 10:06:13 +08:00
</view> -->
2024-03-13 10:54:22 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#7D86EF",
},
tittxt:"授权登录",
chooseType:true,
2024-07-01 10:06:13 +08:00
type:0,
login:false,
ischeck:false,
2024-03-13 10:54:22 +08:00
}
},
methods: {
2024-07-01 10:06:13 +08:00
chck(){
if(this.type==0){
uni.showToast({
title: '请先选择身份',
icon: 'none',
duration: 1000
});
}else{
this.ischeck=true
}
},
2024-03-13 10:54:22 +08:00
userType(num){
this.chooseType=false
this.login=true
if(num==1){
this.usertype='01'
2024-03-25 19:46:07 +08:00
}else{
this.usertype='00'
2024-03-13 10:54:22 +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 = {
2024-07-01 10:06:13 +08:00
loginCode: res.code,
userType: that.type,
2024-03-13 10:54:22 +08:00
mobileCode: e.detail.code,
2024-07-01 10:06:13 +08:00
deptId:100,
2024-03-13 10:54:22 +08:00
};
resolve(data);
} else {
reject(res.errMsg);
}
},
fail(err) {
reject(err);
}
});
});
};
wxLoginAsync()
.then(async (data) => {
this.$u.post("/app/auth/wxLogin",data).then((res) => {
// this.$forceUpdate()
if (res.code == 200) {
console.log(res,'resres');
wx.setStorageSync('token', res.token);
that.ceshi()
2024-07-01 10:06:13 +08:00
}else{
uni.showToast({
title: res.code,
icon: 'none',
duration: 1000
});
}
2024-03-13 10:54:22 +08:00
});
})
.catch((err) => {
console.error(err);
});
},
async ceshi() {
2024-04-29 17:29:05 +08:00
this.$u.get("/app/user/userInfo").then((res) => {
2024-03-13 10:54:22 +08:00
console.log('进入跳转');
2024-03-25 19:46:07 +08:00
uni.switchTab({
url: '/pages/index/index'
})
2024-03-13 10:54:22 +08:00
});
},
}
}
</script>
<style lang="scss" >
page{
background: #FFFFFF;
2024-07-01 10:06:13 +08:00
background-image: url('https://api.ccttiot.com/smartmeter/img/static/uSDAKkwGLuWmNUnwnm6m');
background-size: cover;
/* 确保背景图覆盖整个区域 */
background-repeat: no-repeat;
/* 防止背景图重复 */
background-position: center;
2024-03-13 10:54:22 +08:00
}
.page {
2024-07-01 10:06:13 +08:00
padding: 0 64rpx;
.page1{
.tit{
margin-top: 200rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
.cont{
display: flex;
justify-content: center;
align-items: center;
margin-top: 52rpx;
width: 620rpx;
height: 366rpx;
background: #FFF5D6;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.15);
border-radius: 30rpx 30rpx 30rpx 30rpx;
.img{
width: 208rpx;
image{
width: 208rpx;
height: 208rpx;
}
.txt{
width: 100%;
text-align: center;
font-weight: 500;
font-size: 40rpx;
color: #3D3D3D;
}
}
}
.act1{
background: #FFE593;
}
.btn{
display: flex;
justify-content: center;
align-items: center;
margin-top: 134rpx;
width: 620rpx;
height: 86rpx;
background: #FFE47F;
border-radius: 16rpx 16rpx 16rpx 16rpx;
font-weight: 500;
font-size: 36rpx;
color: #FFFFFF;
}
2024-03-13 10:54:22 +08:00
}
2024-07-01 10:06:13 +08:00
.page2{
2024-03-13 10:54:22 +08:00
2024-07-01 10:06:13 +08:00
.img_box{
margin-top: 250rpx;
margin-left: 86rpx;
width: 452rpx;
height: 452rpx;
image{
width: 452rpx;
height: 452rpx;
}
}
.button{
margin-top: 204rpx;
margin-left: 18rpx;
width: 586rpx;
height: 90rpx;
background: #FFF5D6;
border-radius: 54rpx 54rpx 54rpx 54rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFC107;
}
2024-03-13 10:54:22 +08:00
}
2024-07-01 10:06:13 +08:00
2024-03-13 10:54:22 +08:00
}
2024-07-01 10:06:13 +08:00
2024-03-13 10:54:22 +08:00
</style>