SmartBeehive/pages/my.vue

156 lines
3.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-06-21 18:04:01 +08:00
<u-navbar is-back="false" :title="title" :border-bottom="false" :background="bgc" title-color='#000'
title-size='36' :title-bold='true' height='45' id="navbar">
2024-01-27 16:37:52 +08:00
</u-navbar>
2024-06-21 18:04:01 +08:00
<view class="atv">
2024-07-02 18:07:56 +08:00
<button
v-if="imglist == ''" style="border: 0;outline: none;width: 220rpx;padding-left: 0rpx;height: 220rpx;border-radius: 50%;"
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">
身份切换
</view>
<view class="btn_li">
隐私政策 <view class="iconfont icon-xiangyou1"></view>
</view>
<view class="btn_li">
用户协议 <view class="iconfont icon-xiangyou1"></view>
2024-07-02 18:07:56 +08:00
</view>
<view class="btn_li">
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-01-27 16:37:52 +08:00
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:'',
token:''
2024-01-23 19:15:52 +08:00
}
},
2024-04-27 17:20:50 +08:00
onLoad() {
2024-07-02 18:07:56 +08:00
this.getQiniuToken()
this.getyh()
2024-04-27 17:20:50 +08:00
},
onShow() {
2024-07-02 18:07:56 +08:00
2024-04-27 17:20:50 +08:00
},
2024-01-23 19:15:52 +08:00
methods: {
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
}
})
},
btnsz(){
uni.navigateTo({
url:'/page_user/user_set'
})
},
getImage(e) {
let _this = this
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
}
})
},
getQiniuToken() {
this.$u.get("/common/qiniu/uploadInfo").then((res) => {
if (res.code == 200) {
this.token = res.token
}
});
},
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">
page {
background-color: #FAFDFD;
}
.page {
// position: relative;
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-01-23 19:15:52 +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;
}
.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;
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
}
}
</style>