Commit 2ee97d65 authored by 375242562@qq.com's avatar 375242562@qq.com

fix: 批量匹配和手动匹配的试验下拉列表仅显示招募中的项目

trialService.list 加 status=recruiting 过滤,确保两个 Tab 的
临床试验选择器中只出现状态为"招募中"的试验项目。
Co-Authored-By: default avatarClaude Sonnet 4.6 <noreply@anthropic.com>
parent 1e3c2cf0
......@@ -89,7 +89,7 @@ export function MatchingPage() {
useEffect(() => {
Promise.all([
patientService.list({ limit: 100 }),
trialService.list({ limit: 100 }),
trialService.list({ limit: 100, status: 'recruiting' }),
batchMatchingService.listJobs({ limit: 1 }),
]).then(([p, t, jobs]) => {
setPatients(p)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment