SmartBeehive/pages/my.vue

104 lines
1.8 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">
<image src="" mode="">
</image>
</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>
</view><view class="btn_li">
关于我们 <view class="iconfont icon-xiangyou1"></view>
</view><view class="btn_li">
设置 <view class="iconfont icon-xiangyou1"></view>
</view>
2024-06-11 18:02:55 +08:00
<tab-bar :indexs='4' style=""></tab-bar>
2024-01-27 16:37:52 +08:00
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-06-11 18:02:55 +08:00
2024-01-23 19:15:52 +08:00
}
},
2024-04-27 17:20:50 +08:00
onLoad() {
2024-06-11 18:02:55 +08:00
2024-04-27 17:20:50 +08:00
},
onShow() {
2024-06-11 18:02:55 +08:00
2024-04-27 17:20:50 +08:00
},
2024-01-23 19:15:52 +08:00
methods: {
2024-04-27 17:20:50 +08:00
2024-06-11 18:02:55 +08:00
2024-01-23 19:15:52 +08:00
}
}
2023-12-05 16:45:28 +08:00
</script>
2024-01-27 16:37:52 +08:00
<style lang="scss" >
page{
2024-06-11 18:02:55 +08:00
background-color:#FAFDFD;
2024-01-27 16:37:52 +08:00
}
.page{
// position: relative;
width: 750rpx;
2024-06-21 18:04:01 +08:00
.atv{
width: 206rpx;
height: 206rpx;
background: #D8D8D8;
border-radius: 50%;
margin: 100rpx auto 0;
image{
width: 206rpx;
height: 206rpx;
border-radius: 50%;
}
}
.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;
}
2024-01-27 16:37:52 +08:00
}
2024-01-23 19:15:52 +08:00
2023-12-05 16:45:28 +08:00
</style>