feat: 初始化项目

This commit is contained in:
王天骄
2026-05-29 17:40:10 +08:00
parent 185ccb260e
commit 873c3e98fb
21 changed files with 7801 additions and 67 deletions
+23
View File
@@ -0,0 +1,23 @@
export type MatchingProfile = {
message: string
subtitle: string
progressTarget: number
tags: Array<{
label: string
tone: 'secondary' | 'primary' | 'tertiary' | 'neutral'
}>
}
export function fetchMatchingProfile(): Promise<MatchingProfile> {
return Promise.resolve({
message: '王主任正在为您智能匹配病例',
subtitle: '正在通过大模型计算最适合您的临床案例库...',
progressTarget: 92,
tags: [
{ label: '薄弱环节', tone: 'secondary' },
{ label: '主治医级别', tone: 'primary' },
{ label: '高匹配度', tone: 'tertiary' },
{ label: '基于历史偏好', tone: 'neutral' }
]
})
}