<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>
</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;
		



	}
</style>