| | |
| | | <!-- 有排班 --> |
| | | <template v-else> |
| | | <span class="info-text">{{ patientInfo.patientName }}</span> |
| | | <span class="info-text">{{ patientInfo.age }}岁</span> |
| | | <span v-if="isShowBirthDate" class="info-text">{{ patientInfo.birthDate }}</span> |
| | | <span v-else class="info-text">{{ patientInfo.age }}岁</span> |
| | | <span class="info-text">{{ patientInfo.gender }}</span> |
| | | <span v-if="patientInfo.patFormNumber" class="info-text"> |
| | | {{ patientInfo.patForm }}:{{ patientInfo.patFormNumber }}</span |
| | |
| | | bedsideAuxiliaryScreenStore.deviceData.underTreatment.dialysisAge |
| | | ) |
| | | : null, |
| | | birthDate: bedsideAuxiliaryScreenStore.deviceData.患者出生日期, |
| | | }; |
| | | }); |
| | | |
| | | const isShowBirthDate = computed(() => { |
| | | return bedsideAuxiliaryScreenStore.deviceData.customConfiguration.是否显示患者出生年月日 === 1; |
| | | }); |
| | | |
| | | const formattedCountdown = computed(() => { |
| | | if (countdown.value == null || countdown.value <= 0) return "0s"; |
| | | |