buddhism/pages/walkInto/walkInto.vue
2025-07-31 09:27:55 +08:00

56 lines
970 B
Vue

<template>
<view class="page">
<!-- 自定义导航栏 -->
<custom-navbar
title="走进平山"
/>
<view class="header">
<!-- <image src="" mode=""></image> -->
<view>111222</view>
</view>
</view>
</template>
<script>
import CustomNavbar from "../../components/custom-navbar/custom-navbar.vue";
export default {
components: {
CustomNavbar
},
data() {
return {
bgc: {
backgroundColor: "#F5F0E7",
},
}
},
methods: {
// 如果需要自定义返回逻辑,可以添加 @back 事件监听
}
}
</script>
<style lang="scss">
page {
width: 750rpx;
height: 2492rpx;
background: #F5F0E7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.header {
min-height: 100vh;
display: flex;
align-items: flex-start;
flex-direction: column;
background-color: #FFFBF5;
margin: 20px 14px 40rpx 14px;
width: 694rpx;
background: #FFFBF5;
border-radius: 16rpx 16rpx 16rpx 16rpx;
}
</style>