SmartBeehive/pages/Beehive.vue
2024-06-11 18:02:55 +08:00

54 lines
603 B
Vue

<template>
<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>
<tab-bar :indexs='2' style=""></tab-bar>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #FAFDFD",
},
}
},
onLoad() {
},
onShow() {
},
methods: {
}
}
</script>
<style lang="scss" >
page{
background-color:#FAFDFD;
}
.page{
// position: relative;
width: 750rpx;
}
</style>