优化体检预约信息提示,增加婚姻状况确认提示

This commit is contained in:
yuchenglong
2025-12-09 14:04:36 +08:00
parent 1d8ca8ad07
commit 58aa8bbdf0
+4 -1
View File
@@ -363,10 +363,13 @@ const U2: React.FC = () => {
</div>
</div>
</div>
{!patientInfo?.is_valid_exam || patientInfo.is_valid_exam !== 1 ? (
{patientInfo?.is_valid_exam !== 1 ? (
<div className="u2-error-msg">
未查询到您当日的体检预约信息,建议核对预约日期!
</div>
) : patientInfo?.is_update_patient_info === 1 &&
selectedMarital === null ? (
<div className="u2-error-msg">请确认婚姻状况后再点击确认</div>
) : (
""
)}