buddhism/pages/walkInto/walkInto.vue

49 lines
907 B
Vue
Raw Normal View History

2025-07-29 11:07:32 +08:00
<template>
<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>
<view class="container">
2025-07-29 15:14:31 +08:00
<!-- <image src="" mode=""></image> -->
<view>111</view>
2025-07-29 11:07:32 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#F5F0E7",
},
}
},
onLoad() {
},
methods: {
}
}
</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
}
.container {
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>