buddhism/pages/myorder/index.vue

36 lines
535 B
Vue
Raw Normal View History

2025-07-28 10:53:56 +08:00
<template>
2025-08-14 11:22:53 +08:00
<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>
2025-07-28 10:53:56 +08:00
</template>
<script>
2025-08-14 11:22:53 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: '#fff',
},
}
},
onLoad() {},
methods: {},
}
2025-07-28 10:53:56 +08:00
</script>
<style lang="scss">
2025-08-14 11:22:53 +08:00
page {
background: #fff;
}
</style>