60 lines
935 B
Vue
60 lines
935 B
Vue
<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> |