buddhism/pages/institutionalStructure/institutionalStructure.vue

123 lines
2.2 KiB
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 09:53:04 +08:00
<view class="tile">
<view class="tile-item" v-for="(item, index) in 10" :key="index">
<image :src="tilesImageEnum.TILE" mode="aspectFit" class="tile-image"></image>
</view>
</view>
2025-07-29 08:52:55 +08:00
<view class="container">
2025-07-29 09:53:04 +08:00
<view class="data">
<view class="row">
<view>左上</view>
<view>右上</view>
</view>
<view class="row">
<view>左下</view>
<view>右下</view>
</view>
</view>
<view class="data">
<view class="row">
<view>左上</view>
<view>右上</view>
</view>
<view class="row">
<view>左下</view>
<view>右下</view>
</view>
</view>
<view class="data">
<view class="row">
<view>左上</view>
<view>右上</view>
</view>
<view class="row">
<view>左下</view>
<view>右下</view>
</view>
2025-07-29 08:52:55 +08:00
</view>
</view>
2025-07-29 09:53:04 +08:00
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>
2025-07-29 09:53:04 +08:00
import { tilesImageEnum } from '@/enum/institutionalStructure.js';
2025-07-28 18:52:32 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: "#F5F0E7",
},
2025-07-29 09:53:04 +08:00
tilesImageEnum
2025-07-28 18:52:32 +08:00
}
},
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;
2025-07-29 09:53:04 +08:00
align-items: flex-start;
flex-direction: column;
background-color: #FFFBF5;
padding: 0 11rpx;
}
.tile {
display: flex;
flex-direction: row;
justify-content: space-between;
2025-07-29 08:52:55 +08:00
align-items: center;
2025-07-29 09:53:04 +08:00
width: 100%;
box-sizing: border-box;
}
.tile-item {
flex: 1;
display: flex;
2025-07-29 08:52:55 +08:00
justify-content: center;
2025-07-29 09:53:04 +08:00
align-items: center;
}
.tile-image {
width: 75rpx;
height: 48rpx;
}
.data{
2025-07-29 08:52:55 +08:00
background-color: #FFFBF5;
2025-07-29 09:53:04 +08:00
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
width: 100%;
box-sizing: border-box;
height: 180rpx;
border-radius: 11px;
border: 1px solid #C7A26D;
margin: 8rpx 0;
}
.row{
flex: 1;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20rpx;
2025-07-28 18:52:32 +08:00
}
</style>