InspectionCleaning/pages/home/index.vue

28 lines
505 B
Vue
Raw Normal View History

2025-04-10 09:12:18 +08:00
<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>