完善页面

This commit is contained in:
wangxiaowei
2025-10-23 12:05:20 +08:00
parent adb889f5e1
commit f29b2404a5
35 changed files with 530 additions and 477 deletions

View File

@ -0,0 +1,60 @@
<template>
<view class="">
<navbar title="预约网球场馆"></navbar>
</view>
</template>
<script>
import navbar from '@/components/navbar.vue';
export default {
components: {
navbar
},
data() {
return {
};
},
onLoad(args) {
},
mounted() {
},
methods: {
}
};
</script>
<style lang="scss">
page {
background-color: #fff;
}
.top_head {
line-height: 30px;
z-index: 1;
padding-left: 26rpx;
position: sticky;
top: 0;
left: 0;
z-index: 100;
}
.head_top {
width: 100%;
height: var(--status-bar-height);
}
.title {
display: flex;
align-items: center;
.s-title {
font-size: 36rpx;
color: #303133;
line-height: 50rpx;
margin-left: 24rpx;
}
}
</style>