34 lines
553 B
Vue
34 lines
553 B
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar :is-back="false" title="运营" :border-bottom="false" back-icon-color="000" :background="bgc" title-color='#000' title-size='36'
|
|
height='40' id="navbar">
|
|
</u-navbar>
|
|
<tab-bars :indexs='1' style=""></tab-bars>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: "",
|
|
},
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background: #fff;
|
|
}
|
|
|
|
|
|
</style> |