36 lines
535 B
Vue
36 lines
535 B
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar
|
|
title="包厢详情"
|
|
:border-bottom="false"
|
|
:background="bgc"
|
|
back-icon-color="#262B37"
|
|
title-color="#262B37"
|
|
title-size="36"
|
|
height="36"
|
|
id="navbar"
|
|
>
|
|
</u-navbar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: '#fff',
|
|
},
|
|
}
|
|
},
|
|
onLoad() {},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background: #fff;
|
|
}
|
|
</style>
|