buddhism/pages/walkInto/walkInto.vue

56 lines
970 B
Vue
Raw Normal View History

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