SmartBeehive/pages/Apiary/AddApiary.vue

47 lines
526 B
Vue
Raw Normal View History

2024-06-11 18:02:55 +08:00
<template>
<view class="page">
<u-navbar title="添加蜂场" :border-bottom="false" :background="bgc" title-color='#3D3D3D '
title-size='36' height='36' id="navbar">
</u-navbar>
</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>