Files
akmon/pages/ec/family/schedule-visit.uvue
2026-01-20 08:04:15 +08:00

29 lines
476 B
Plaintext

<template>
<view class="schedule-visit-page">
<text class="title">预约探访</text>
<view class="empty">暂无数据</view>
</view>
</template>
<script setup lang="uts">
// 预约探访页面骨架
</script>
<style scoped>
.schedule-visit-page {
padding: 30px;
background: #f5f5f5;
min-height: 100vh;
}
.title {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
}
.empty {
color: #aaa;
text-align: center;
margin-top: 60px;
}
</style>