Files
akmon/pages/ec/health/quick-check.uvue
2026-01-20 08:04:15 +08:00

42 lines
813 B
Plaintext

<!-- 养老管理系统 - 健康检查快捷入口 -->
<template>
<view class="quick-check-page">
<view class="header">
<text class="title">健康检查</text>
</view>
<view class="content">
<text class="desc">此处可快速录入健康检查数据或跳转到健康详情页面。</text>
<!-- 可根据实际需求补充表单或快捷入口 -->
</view>
</view>
</template>
<script setup lang="uts">
// 可根据实际需求补充逻辑
</script>
<style scoped>
.quick-check-page {
min-height: 100vh;
background: #f5f5f5;
padding: 20px;
}
.header {
margin-bottom: 20px;
}
.title {
font-size: 22px;
font-weight: bold;
color: #333;
}
.content {
background: #fff;
border-radius: 8px;
padding: 20px;
}
.desc {
color: #999;
font-size: 14px;
}
</style>