前端筛选参数映射错误:radio按钮的值(1=全部/2=长期/3=临时)被直接传给后端therapyEnum参数, 而后端枚举值为1=长期、2=临时。当选择"临时"(type.value=3)时,后端收到therapyEnum=3不匹配任何枚举, 导致筛选失效。修复为正确映射:1->undefined(不传), 2->1(长期), 3->2(临时)。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>