This commit is contained in:
yanran200730
2022-01-13 15:32:47 +08:00
parent 2dd0c6dfe1
commit b7327e5613

View File

@@ -47,7 +47,7 @@
<ai-wrapper
label-width="120px">
<ai-info-item label="当前体温">
<span :style="{color: reportInfo.temperature < 35 || reportInfo.temperature > 38 ? '#FF4466' : '#42D784'}">{{ reportInfo.temperature }}</span>
<span :style="{color: reportInfo.temperature > 37.3 ? '#FF4466' : '#42D784'}">{{ reportInfo.temperature }}</span>
</ai-info-item>
<ai-info-item label="14天内是否接触新冠确诊或疑似患者">
<span :style="{color: reportInfo.touchInFourteen === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicTouchInFourteen', reportInfo.touchInFourteen) }}</span>
@@ -66,7 +66,7 @@
<span :style="{color: reportInfo.checkResult === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicRecentTestResult', reportInfo.checkResult) }}</span>
</ai-info-item>
<ai-info-item label="健康码状态">
<span :style="{color: reportInfo.healthCode === '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicHealthCode', reportInfo.healthCode) }}</span>
<span :style="{color: (reportInfo.healthCode === '0' || reportInfo.healthCode === '1') ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicHealthCode', reportInfo.healthCode) }}</span>
</ai-info-item>
<ai-info-item label="已接种疫苗次数">
<span :style="{color: reportInfo.vaccine !== '0' ? '#42D784' : '#FF4466'}">{{ $dict.getLabel('epidemicVaccineTime', reportInfo.vaccine) }}</span>