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

View File

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