|
|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
-<div class="bl-flex" h100 items-center column>
|
|
|
+<div class="bl-flex" h100 items-center column
|
|
|
+ :rst-bg-color="putIsAbnormal">
|
|
|
<div size-lg bold color-des padding-top-xl>请出示给门诊员工</div>
|
|
|
<div size-lg padding-top-xl>
|
|
|
<div class="bl-flex abnormal" items-center color-success v-if="!putIsAbnormal">
|
|
|
@@ -13,18 +14,35 @@
|
|
|
</div>
|
|
|
<div w100 size-sm padding-lg padding-top-xl>
|
|
|
<div class="bl-flex" between margin-top-md margin-bottom-md
|
|
|
- v-for="(item, index) in data.result.slice(0, 3)"
|
|
|
+ v-for="(item, index) in data.result.slice(0, 4)"
|
|
|
:key="index">
|
|
|
<div color-des>{{ item.title }}</div>
|
|
|
<div>{{ item.val }}</div>
|
|
|
</div>
|
|
|
+ <div class="bl-flex" between margin-top-md margin-bottom-md
|
|
|
+ :color-warning="putTemperature === 37.3"
|
|
|
+ :color-error="putTemperature > 37.3"
|
|
|
+ :color-success="putTemperature < 37.3"
|
|
|
+ v-if="putTemperature !== true && !!putTemperature">
|
|
|
+ <div color-des>当日体温</div>
|
|
|
+ <div>{{ putTemperature }}°C</div>
|
|
|
+ </div>
|
|
|
+ <div class="bl-flex" between margin-top-md margin-bottom-md color-error
|
|
|
+ v-for="(item, index) in putAbnormalList"
|
|
|
+ :key="'a' + index">
|
|
|
+ <div>{{ item.title }}</div>
|
|
|
+ <div>{{ item.val }}</div>
|
|
|
+ </div>
|
|
|
<div class="bl-flex" between margin-top-md margin-bottom-md>
|
|
|
<div color-des>提交时间</div>
|
|
|
<div>{{ data.created }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div w100 padding-lg>
|
|
|
- <div class="btn primary" @click="btnLinkBack()">回到首页</div>
|
|
|
+ <div class="bl-flex" padding-bottom-lg v-if="putOrgName">
|
|
|
+ <div size-xl>{{ putOrgName }}</div>
|
|
|
+ </div>
|
|
|
+ <div w100 padding-lg v-if="!putIsAbnormal">
|
|
|
+ <div class="btn primary" @click="btnLinkBack()">回到小程序首页</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|