11
This commit is contained in:
parent
4f25346a88
commit
a1e8dae4c8
|
@ -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>
|
Loading…
Reference in New Issue
Block a user