2024-03-13 10:54:22 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page">
|
2024-06-11 18:03:16 +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
|
|
|
|
</u-navbar>
|
|
|
|
|
<view class="imgbox">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uCqHftk2W2zEPX03DLcb" mode=""></image>
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="tip">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
欢迎来到共享开关
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="inputbox">
|
|
|
|
|
<!-- 在这里放置你的输入框 -->
|
2024-05-10 17:37:36 +08:00
|
|
|
|
<!-- <view class="box1" v-if="chooseType">
|
2024-03-13 10:54:22 +08:00
|
|
|
|
<view class="input_txt">
|
|
|
|
|
首次使用请选择您的身份
|
|
|
|
|
</view>
|
|
|
|
|
<div class="button" style="margin-top: 162rpx;" @click="userType(1)">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
我是商家
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="button" @click="userType(2)">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
我是用户
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</div>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
</view> -->
|
|
|
|
|
<view class="box1">
|
2024-03-13 10:54:22 +08:00
|
|
|
|
<view class="input_txt" style="width: 536rpx;font-size: 24rpx;line-height: 32rpx;">
|
2024-05-10 17:37:36 +08:00
|
|
|
|
您暂未授权共享开关小程序获取你的信息,将无法正常使用小程序的功能。如需要正常使用请点击“授权”按钮,打开头像,昵称等信息的授权。
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</view>
|
2024-06-11 18:03:16 +08:00
|
|
|
|
|
|
|
|
|
<button class="button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber"
|
2024-06-14 18:51:43 +08:00
|
|
|
|
style="margin-top: 280rpx;margin-left: -10rpx;">
|
2024-03-13 10:54:22 +08:00
|
|
|
|
授权登录
|
|
|
|
|
</button>
|
2024-06-14 18:51:43 +08:00
|
|
|
|
<button class="button" style="margin-top: 50rpx;margin-left: -10rpx;" @click="btnbudl">
|
|
|
|
|
暂不授权登录
|
|
|
|
|
</button>
|
|
|
|
|
</view>
|
2024-03-13 10:54:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: "#7D86EF",
|
|
|
|
|
},
|
2024-06-11 18:03:16 +08:00
|
|
|
|
tittxt: "授权登录",
|
|
|
|
|
chooseType: true,
|
|
|
|
|
usertype: '',
|
2024-06-14 18:51:43 +08:00
|
|
|
|
login: false,
|
|
|
|
|
id:''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(option) {
|
|
|
|
|
if(option.id){
|
|
|
|
|
this.id = option.id
|
2024-03-13 10:54:22 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-06-11 18:03:16 +08:00
|
|
|
|
userType(num) {
|
|
|
|
|
this.chooseType = false
|
|
|
|
|
this.login = true
|
|
|
|
|
if (num == 1) {
|
|
|
|
|
this.usertype = '01'
|
|
|
|
|
} else {
|
|
|
|
|
this.usertype = '00'
|
2024-03-13 10:54:22 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getPhoneNumber(e) {
|
2024-06-11 18:03:16 +08:00
|
|
|
|
let that = this;
|
|
|
|
|
console.log("eeeeeeee", e);
|
|
|
|
|
const wxLoginAsync = () => {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
wx.login({success(res) {
|
|
|
|
|
if (res.code) {
|
|
|
|
|
let data = {
|
2024-05-10 17:37:36 +08:00
|
|
|
|
loginCode: res.code,
|
2024-06-11 18:03:16 +08:00
|
|
|
|
mobileCode: e.detail.code,
|
|
|
|
|
}
|
|
|
|
|
resolve(data);
|
|
|
|
|
} else {
|
|
|
|
|
reject(res.errMsg)
|
|
|
|
|
}
|
|
|
|
|
},fail(err) {
|
|
|
|
|
reject(err)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
wxLoginAsync().then(async (data) => {
|
|
|
|
|
this.$u.post("/app/auth/wxLogin", data).then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
2024-03-13 10:54:22 +08:00
|
|
|
|
wx.setStorageSync('token', res.token);
|
|
|
|
|
that.ceshi()
|
2024-06-11 18:03:16 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch((err) => {
|
|
|
|
|
console.error(err)
|
|
|
|
|
})
|
2024-03-13 10:54:22 +08:00
|
|
|
|
},
|
|
|
|
|
async ceshi() {
|
|
|
|
|
this.$u.get("/app/user/userInfo").then((res) => {
|
2024-06-14 18:51:43 +08:00
|
|
|
|
if(this.id == 1){
|
|
|
|
|
uni.navigateBack()
|
|
|
|
|
}else{
|
2024-07-16 15:00:10 +08:00
|
|
|
|
uni.reLaunch({
|
2024-06-14 18:51:43 +08:00
|
|
|
|
url: '/pages/shouye/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-06-11 18:03:16 +08:00
|
|
|
|
})
|
2024-03-13 10:54:22 +08:00
|
|
|
|
},
|
2024-06-14 18:51:43 +08:00
|
|
|
|
|
|
|
|
|
btnbudl(){
|
2024-07-16 15:00:10 +08:00
|
|
|
|
uni.reLaunch({
|
2024-06-14 18:51:43 +08:00
|
|
|
|
url: '/pages/shouye/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-03-13 10:54:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-06-11 18:03:16 +08:00
|
|
|
|
<style lang="scss">
|
|
|
|
|
page {
|
2024-03-13 10:54:22 +08:00
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
}
|
2024-06-11 18:03:16 +08:00
|
|
|
|
|
2024-03-13 10:54:22 +08:00
|
|
|
|
.page {
|
2024-06-11 18:03:16 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
/* 添加相对定位 */
|
2024-03-13 10:54:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.imgbox {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 576rpx;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 576rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tip {
|
|
|
|
|
width: 204rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 400rpx;
|
|
|
|
|
left: 30rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 66rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inputbox {
|
2024-06-11 18:03:16 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
/* 或者 fixed,根据你的需求 */
|
|
|
|
|
top: 700rpx;
|
|
|
|
|
/* 调整这里来控制距离顶部的距离 */
|
|
|
|
|
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
/* 调整输入框的宽度 */
|
2024-03-13 10:54:22 +08:00
|
|
|
|
padding: 100rpx 0;
|
2024-06-11 18:03:16 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
/* 设置背景颜色,这里是红色的半透明 */
|
|
|
|
|
border-radius: 50rpx;
|
|
|
|
|
/* 设置圆角 */
|
|
|
|
|
z-index: 999;
|
|
|
|
|
/* 设置 z-index,确保在其他内容上方显示 */
|
2024-03-13 10:54:22 +08:00
|
|
|
|
padding-left: 104rpx;
|
2024-06-11 18:03:16 +08:00
|
|
|
|
|
|
|
|
|
.input_txt {
|
2024-03-13 10:54:22 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
line-height: 44rpx;
|
|
|
|
|
}
|
2024-06-11 18:03:16 +08:00
|
|
|
|
|
|
|
|
|
.button {
|
2024-03-13 10:54:22 +08:00
|
|
|
|
margin-top: 64rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 562rpx;
|
|
|
|
|
height: 96rpx;
|
|
|
|
|
background: #8883F0;
|
|
|
|
|
border-radius: 52rpx 52rpx 52rpx 52rpx;
|
2024-06-11 18:03:16 +08:00
|
|
|
|
|
2024-03-13 10:54:22 +08:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-11 18:03:16 +08:00
|
|
|
|
</style>
|