This commit is contained in:
Sliverber 2024-07-05 15:01:29 +08:00
parent 4f25346a88
commit a1e8dae4c8

View File

@ -1,5 +1,10 @@
<template>
<view>
<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>
</template>
@ -8,15 +13,41 @@
export default {
data() {
return {
bgc: {
backgroundColor: " #F4FAF8",
},
title: "添加视频监控",
}
},
onLoad() {
},
onShow() {
},
methods: {
addApiary(){
uni.navigateTo({
url:'/pages/Apiary/AddApiary'
})
}
}
}
</script>
<style>
<style lang="scss">
page {
background-color: #F4FAF8;
}
.page {
// position: relative;
width: 750rpx;
}
</style>