|
|
|
@ -10,7 +10,7 @@ |
|
|
|
cellspacing="0" bordercolor="#909399" style="border-collapse:collapse;"> |
|
|
|
<tr height="24"> |
|
|
|
<td width="200">{{ item2.asbitemName }}</td> |
|
|
|
<td width="604" colspan="7">{{ '检查日期:' + item2.checkDate + ' 检查医生:' + item2.checkDoctorName }}</td> |
|
|
|
<td width="604" colspan="7">{{ '检查日期:' + item2.checkDate.substring(0,10) + ' 检查医生:' + item2.checkDoctorName }}</td> |
|
|
|
</tr> |
|
|
|
|
|
|
|
<tr style="text-align: center;" height="24"> |
|
|
|
@ -24,11 +24,11 @@ |
|
|
|
<td width="50">提示</td> |
|
|
|
</tr> |
|
|
|
|
|
|
|
<tr height="24" v-for="(item3, index3) in item2.items" :key="index + '-' + index2 + '-' + index3"> |
|
|
|
<tr height="24" v-for="(item3, index3) in item2.items" :key="index + '-' + index2 + '-' + index3"> |
|
|
|
<td>{{ item3.itemName }}</td> |
|
|
|
<td :style="`background-color: ${getColorStr(item3.reportBackgroundColor)};color: ${getColorStr(item3.reportFontColor)};`">{{ item3.itemResult }}</td> |
|
|
|
<td :style="`background-color: ${getColorStr(item3.previousReportBackgroundColor)};color: ${getColorStr(item3.previousReportFontColor)};`">{{ item3.previousItemResult }}</td> |
|
|
|
<td :style="`background-color: ${getColorStr(item3.previousTwoReportBackgroundColor)};color: ${getColorStr(item3.previousTwoReportFontColor)};`">{{ item3.previousTwoItemResult }}</td> |
|
|
|
<td :style="`color: ${getColorStr(item3.reportFontColor)};`">{{ item3.itemResult }}</td> |
|
|
|
<td :style="`color: ${getColorStr(item3.previousReportFontColor)};`">{{ item3.previousItemResult }}</td> |
|
|
|
<td :style="`color: ${getColorStr(item3.previousTwoReportFontColor)};`">{{ item3.previousTwoItemResult }}</td> |
|
|
|
<td align="center">{{ item3.referenceRangeValue }}</td> |
|
|
|
<td align="center">{{ item3.criticalRangeValue }}</td> |
|
|
|
<td align="center">{{ item3.unit }}</td> |
|
|
|
|