28 lines
505 B
Vue
28 lines
505 B
Vue
|
<template>
|
||
|
<view class="content"> </view>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { useRouter } from "@/utils/utils.js";
|
||
|
import daySelect from "@/components/daySelect/index.vue";
|
||
|
export default {
|
||
|
components: {
|
||
|
daySelect,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
// console.log("%c%s", "color:red", "mounted--");
|
||
|
},
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.content {
|
||
|
// height: 100vh; // 确保容器有明确高度
|
||
|
overflow: hidden;
|
||
|
padding-bottom: 100rpx;
|
||
|
}
|
||
|
</style>
|