buddhism/pages/institutionalStructure/institutionalStructure.vue
2025-07-28 18:52:32 +08:00

35 lines
475 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: "#F5F0E7",
},
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
page {
background: #fff;
}
</style>