buddhism/pages/walkInto/walkInto.vue
2025-07-31 11:34:40 +08:00

58 lines
1.0 KiB
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";
import CommonEnum from "../../enum/common";
export default {
components: {
CustomNavbar
},
data() {
return {
CommonEnum,
bgc: {
backgroundColor: CommonEnum.BASE_COLOR,
},
}
},
methods: {
// 如果需要自定义返回逻辑,可以添加 @back 事件监听
}
}
</script>
<style lang="scss">
page {
width: 750rpx;
height: 2492rpx;
background: v-bind('CommonEnum.BASE_COLOR');
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>