47 lines
526 B
Vue
47 lines
526 B
Vue
|
<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>
|