SmartBeehive/page_Beehive/choose_Beehive.vue
2024-06-21 18:04:01 +08:00

81 lines
1.2 KiB
Vue

<template>
<view class="page">
<u-navbar :title="title" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
:title-bold='true' height='45' id="navbar">
</u-navbar>
<view class="beehive_li">
<view class="left">
21111154689
</view>
<view class="right">
福鼎蜂场-002
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #F4FAF8",
},
title: "选择蜂箱",
}
},
onLoad() {
},
onShow() {
},
methods: {
addApiary(){
uni.navigateTo({
url:'/pages/Apiary/AddApiary'
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #F4FAF8;
}
.page {
// position: relative;
width: 750rpx;
padding: 42rpx 46rpx;
.beehive_li{
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 22rpx;
width: 658rpx;
height: 106rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.15);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.left{
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
.right{
font-weight: 500;
font-size: 32rpx;
color: #808080;
}
}
}
</style>