SmartBeehive/pages/my.vue

220 lines
5.3 KiB
Vue
Raw Normal View History

2023-12-05 16:45:28 +08:00
<template>
2024-01-27 16:37:52 +08:00
<view class="page">
2024-07-10 17:52:46 +08:00
<u-navbar :is-back="false" title="我的" :border-bottom="false" :background="bgc" title-color='#3D3D3D '
title-size='36' height='45' id="navbar">
</u-navbar>
2024-10-28 18:00:49 +08:00
<view class="sblr" @click="btnluru" v-if="deviceAdmin">
2024-10-26 10:50:08 +08:00
设备录入
2024-10-28 18:00:49 +08:00
</view>
2024-06-21 18:04:01 +08:00
<view class="atv">
2024-07-02 18:07:56 +08:00
<button
2024-07-03 18:03:01 +08:00
v-if="imglist == ''" style="border: 0;outline: none;width: 220rpx;padding-left: 0rpx;height: 220rpx;border-radius: 50%;background: #D8D8D8;"
2024-07-02 18:07:56 +08:00
type="primary reverse" open-type="chooseAvatar" @chooseavatar="getImage">
</button>
<button
v-else style="border: 0;outline: none;width: 220rpx;padding-left: 0rpx;height: 220rpx;border-radius: 50%;"
type="primary reverse" open-type="chooseAvatar" @chooseavatar="getImage">
<image :src="imglist" mode=""></image>
</button>
2024-06-21 18:04:01 +08:00
</view>
<view class="change">
2024-07-03 18:03:01 +08:00
<!-- 身份切换 -->
2024-06-21 18:04:01 +08:00
</view>
2024-10-10 17:03:59 +08:00
<!-- 认养 --><!-- 认养 --><!-- 认养 --><!-- 认养 --><!-- 认养 -->
<!-- <view class="btn_li" @click="btnpage(4)">
收货地址 <view class="iconfont icon-xiangyou1"></view>
</view>
<view class="btn_li" @click="btnpage(5)">
历史物流 <view class="iconfont icon-xiangyou1"></view>
</view> -->
<!-- 认养 --><!-- 认养 --><!-- 认养 --><!-- 认养 --><!-- 认养 -->
2024-07-03 18:03:01 +08:00
<view class="btn_li" @click="btnpage(1)">
2024-06-21 18:04:01 +08:00
隐私政策 <view class="iconfont icon-xiangyou1"></view>
</view>
2024-07-03 18:03:01 +08:00
<view class="btn_li" @click="btnpage(2)">
2024-06-21 18:04:01 +08:00
用户协议 <view class="iconfont icon-xiangyou1"></view>
2024-07-02 18:07:56 +08:00
</view>
2024-07-03 18:03:01 +08:00
<view class="btn_li" @click="btnpage(3)">
2024-06-21 18:04:01 +08:00
关于我们 <view class="iconfont icon-xiangyou1"></view>
2024-07-02 18:07:56 +08:00
</view>
<view class="btn_li" @click="btnsz">
2024-06-21 18:04:01 +08:00
设置 <view class="iconfont icon-xiangyou1"></view>
</view>
2024-07-03 18:03:01 +08:00
<!-- <input type="text" style="margin-left: 50rpx;border: 1px solid #ccc;width: 500rpx;margin-top: 30rpx;" placeholder="aaaaa" :placeholder-style="{}"/> -->
2024-07-02 18:07:56 +08:00
<tab-bar :indexs='4' style=""></tab-bar>
2023-12-05 16:45:28 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-01-27 16:37:52 +08:00
bgc: {
2024-06-21 18:04:01 +08:00
backgroundColor: " #F4FAF8",
2024-01-27 16:37:52 +08:00
},
2024-06-21 18:04:01 +08:00
title: "我的",
2024-07-02 18:07:56 +08:00
userobj:{},
imglist:'',
2024-10-28 18:00:49 +08:00
token:'',
deviceAdmin:false
2024-01-23 19:15:52 +08:00
}
},
2024-04-27 17:20:50 +08:00
onLoad() {
2024-10-26 14:59:28 +08:00
2024-04-27 17:20:50 +08:00
},
onShow() {
2024-10-26 14:59:28 +08:00
this.getyh()
2024-04-27 17:20:50 +08:00
},
2024-01-23 19:15:52 +08:00
methods: {
2024-10-26 10:50:08 +08:00
btnluru(){
uni.navigateTo({
url:'/page_user/luru'
})
},
2024-07-03 18:03:01 +08:00
btnpage(num){
if(num == 1){
uni.navigateTo({
2024-07-06 18:05:22 +08:00
url:'/page_user/about?tit=' + '隐私政策' + '&type=' + 1
2024-07-03 18:03:01 +08:00
})
}else if(num == 2){
uni.navigateTo({
2024-07-06 18:05:22 +08:00
url:'/page_user/about?tit=' + '用户协议' + '&type=' + 2
2024-07-03 18:03:01 +08:00
})
}else if(num == 3){
uni.navigateTo({
2024-07-06 18:05:22 +08:00
url:'/page_user/about?tit=' + '关于我们' + '&type=' + 3
2024-07-03 18:03:01 +08:00
})
}
},
2024-07-02 18:07:56 +08:00
getyh() {
this.$u.get(`app/user/userInfo`).then(res => {
if (res.code == 200) {
this.userobj = res.data
this.imglist = res.data.avatar
2024-10-28 18:00:49 +08:00
this.deviceAdmin = res.data.deviceAdmin
2024-07-02 18:07:56 +08:00
}
})
},
btnsz(){
uni.navigateTo({
url:'/page_user/user_set'
})
},
getImage(e) {
2024-10-26 14:59:28 +08:00
this.getQiniuToken(e)
},
getQiniuToken(e) {
2024-07-02 18:07:56 +08:00
let _this = this
2024-10-26 14:59:28 +08:00
this.$u.get("/common/qiniu/uploadInfo").then((res) => {
if (res.code == 200) {
_this.token = res.token
let math = 'static/' + _this.$u.guid(20)
const tempFilePaths = e.detail.avatarUrl
wx.uploadFile({
url: 'https://up-z2.qiniup.com',
name: 'file',
filePath: tempFilePaths,
formData: {
token: _this.token,
key: 'smartmeter/img/' + math
},
success: function(res) {
let str = JSON.parse(res.data)
console.log(str.key)
let img = 'https://api.ccttiot.com/' + str.key
_this.imglist = img
let data = {
avatar:_this.imglist
}
_this.$u.put("/app/user",data).then((res) => {
if (res.code == 200) {
uni.showToast({
title: '头像更新成功',
icon: 'success',
duration:1000
})
}else{
uni.showToast({
title: res.msg,
icon: 'success',
duration:1000
})
}
2024-07-03 18:03:01 +08:00
})
}
})
2024-10-26 14:59:28 +08:00
}else if(res.code == 401){
uni.navigateTo({
url:'/pages/login/login'
})
2024-07-02 18:07:56 +08:00
}
2024-10-26 10:50:08 +08:00
})
2024-07-02 18:07:56 +08:00
},
2024-10-26 10:50:08 +08:00
2024-01-23 19:15:52 +08:00
}
}
2023-12-05 16:45:28 +08:00
</script>
2024-07-02 18:07:56 +08:00
<style lang="scss">
2024-10-26 10:50:08 +08:00
.sblr{
width: 180rpx;
height: 80rpx;
line-height: 80rpx;
border-radius: 20rpx;
text-align: center;
color: #fff;
font-size: 32rpx;
position: fixed;
top: 200rpx;
right: 20px;
2024-11-13 18:01:04 +08:00
background-color: #ce9e10;
2024-10-26 10:50:08 +08:00
}
2024-07-02 18:07:56 +08:00
page {
background-color: #FAFDFD;
2024-07-03 18:03:01 +08:00
}
.input-placeholder{
color: red;
2024-07-02 18:07:56 +08:00
}
.page {
width: 750rpx;
.atv {
2024-06-21 18:04:01 +08:00
width: 206rpx;
height: 206rpx;
2024-07-02 18:07:56 +08:00
background: #D8D8D8;
2024-06-21 18:04:01 +08:00
border-radius: 50%;
2024-07-02 18:07:56 +08:00
margin: 100rpx auto 0;
image {
width: 222rpx;
height: 222rpx;
border-radius: 50%;
}
2024-06-21 18:04:01 +08:00
}
2024-07-02 18:07:56 +08:00
.change {
width: 100%;
text-align: center;
margin-top: 38rpx;
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
2024-07-11 18:03:13 +08:00
height: 50rpx;
2024-07-02 18:07:56 +08:00
}
.btn_li {
margin: 38rpx auto 0;
padding: 22rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
width: 658rpx;
height: 88rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0, 0, 0, 0.15);
border-radius: 20rpx 20rpx 20rpx 20rpx;
2024-07-10 17:52:46 +08:00
font-weight: 500;
2024-07-02 18:07:56 +08:00
font-size: 32rpx;
color: #3D3D3D;
}
}
</style>