SmartBeehive/pages/my.vue

54 lines
603 B
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">
<u-navbar :is-back="false" title="我的" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36'
height='36'
id="navbar">
</u-navbar>
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-11 18:02:55 +08:00
backgroundColor: " #FAFDFD",
2024-01-27 16:37:52 +08:00
},
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-11 18:02:55 +08:00
2024-03-13 10:54:22 +08:00
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>