Initial commit of akmon project
This commit is contained in:
41
pages/ec/health/quick-check.uvue
Normal file
41
pages/ec/health/quick-check.uvue
Normal file
@@ -0,0 +1,41 @@
|
||||
<!-- 养老管理系统 - 健康检查快捷入口 -->
|
||||
<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>
|
||||
Reference in New Issue
Block a user