import React from 'react'; import { useAppSelector } from '@/states/store'; import BodyPositionList from '@/pages/exam/components/BodyPositionList'; import FilmTabBar from './FilmTabBar'; import Film from './Film'; import OperationPanel from './OperationPanel'; const PrintPage: React.FC = () => { // 从Redux获取患者信息 const examWorksCache = useAppSelector((state) => state.examWorksCache); const patientName = examWorksCache.works[0]?.PatientName || '未知患者'; return (