添加接口

- 体检客户列表
- 体检进度详情
- 客户详情
This commit is contained in:
xianyi
2025-12-10 17:28:15 +08:00
parent f4d5c085ee
commit 0efc4c186e
5 changed files with 428 additions and 71 deletions

View File

@@ -2,6 +2,26 @@
@tailwind components;
@tailwind utilities;
/* 自定义滚动条(圆角、细滚动条) */
.custom-scroll {
scrollbar-width: none;
scrollbar-color: #cbd5e1 #f8fafc;
}
.custom-scroll::-webkit-scrollbar {
width: 8px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f8fafc;
border-radius: 9999px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 9999px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
:root {
font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
color: #0f172a;