buddhism/pages/institutionalStructure/institutionalStructure.vue

55 lines
804 B
Vue
Raw Normal View History

2025-07-28 17:52:29 +08:00
<template>
2025-07-28 18:52:32 +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>
2025-07-29 08:52:55 +08:00
<view class="container">
<view>
111
</view>
<view>
222
</view>
<view>
222
</view>
<view>
222
</view>
</view>
2025-07-28 18:52:32 +08:00
</view>
2025-07-28 17:52:29 +08:00
</template>
2025-07-28 18:52:32 +08:00
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#F5F0E7",
},
}
},
onLoad() {
},
methods: {
}
}
2025-07-28 17:52:29 +08:00
</script>
2025-07-28 18:52:32 +08:00
<style lang="scss">
page {
2025-07-29 08:52:55 +08:00
background: #F5F0E7;
}
.container {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #FFFBF5;
2025-07-28 18:52:32 +08:00
}
</style>