|
|
@ -3,35 +3,25 @@ |
|
|
|
<div class="hospital">{{ tenantName || "-" }}</div> |
|
|
|
<div class="card"> |
|
|
|
<div class="card-title">筛查结论</div> |
|
|
|
<div |
|
|
|
style=" |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
margin-bottom: 6px; |
|
|
|
" |
|
|
|
> |
|
|
|
<span>您的体重指数(BMI)为:</span> |
|
|
|
<span>{{ form["SCWJ-BMI"] || "-" }}</span> |
|
|
|
<div class="card-tips-item"> |
|
|
|
<span class="lable">您的体重指数(BMI)为:</span> |
|
|
|
<span class="div-value" v-if="weightShow">{{ form["SCWJ-BMI"] }}</span> |
|
|
|
<div class="div-value1" v-else>您的筛查结论是正常的</div> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
style=" |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
margin-bottom: 6px; |
|
|
|
" |
|
|
|
> |
|
|
|
<span>您的睡眠效率为:</span> |
|
|
|
<span>{{ form["SCWJ-SMXL"] || "-" }}%</span> |
|
|
|
<div class="card-tips-item"> |
|
|
|
<span class="lable">您的睡眠效率为:</span> |
|
|
|
<span class="div-value" v-if="sleepShow">{{ form["SCWJ-SMXL"] }}%</span> |
|
|
|
<div class="div-value1" v-else>您的筛查结论是正常的</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="card" v-if="weightShow || sleepShow"> |
|
|
|
<div class="card card1" v-if="weightShow || sleepShow"> |
|
|
|
<span v-if="weightShow"> |
|
|
|
属于<span :class="`BIMTips${BMIVerdict[form['SCWJ-JL']]}`">{{ |
|
|
|
form["SCWJ-JL"] || "-" |
|
|
|
}}</span |
|
|
|
>型肥胖,</span |
|
|
|
><span v-if="sleepShow"><span class="BIMTips5">睡眠效率欠佳</span>,</span |
|
|
|
>建议扫码关注医院公众号,预约体重管理中心医师进一步评估。 |
|
|
|
>您此次筛查报名已成功,建议扫码关注医院公众号,预约体重管理中心医师进一步评估。流程为:公众号→就诊服务→预约挂号→体重管理中心→选择医师。或可以电话0771-2312932进行咨询。 |
|
|
|
<div> |
|
|
|
<img src="./gzh.jpg" style="max-width: 100%" /> |
|
|
|
</div> |
|
|
@ -93,11 +83,46 @@ export default { |
|
|
|
this.sleepShow = true; |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: {}, |
|
|
|
methods: { |
|
|
|
getBmiTips(bmi) { |
|
|
|
let weight = this.BMIVerdict[this.form["SCWJ-JL"]]; // 体重结论 |
|
|
|
if (weight >= 3) { |
|
|
|
return bmi; |
|
|
|
} else { |
|
|
|
return "您的筛查结论是正常的"; |
|
|
|
} |
|
|
|
}, |
|
|
|
getSmxlTips(smxl) { |
|
|
|
let sleep = this.form["SCWJ-SMXL"]; // 睡眠效率 |
|
|
|
if (sleep < 80) { |
|
|
|
return `${smxl}%`; |
|
|
|
} else { |
|
|
|
return "您的筛查结论是正常的"; |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
<style scoped src="@/assets/styles/common.css"></style> |
|
|
|
<style scoped> |
|
|
|
.card-tips-item { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
flex-wrap: wrap; |
|
|
|
} |
|
|
|
.div-value { |
|
|
|
color: red; |
|
|
|
} |
|
|
|
.div-value1 { |
|
|
|
width: 100%; |
|
|
|
text-align: right; |
|
|
|
color: green; |
|
|
|
} |
|
|
|
.lable { |
|
|
|
text-align: right; |
|
|
|
width: 194px; |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
.hospital1 { |
|
|
|
text-align: center; |
|
|
|
font-size: 14px; |
|
|
@ -143,12 +168,15 @@ export default { |
|
|
|
} |
|
|
|
|
|
|
|
.card { |
|
|
|
font-size: 16px; |
|
|
|
padding: 16px; |
|
|
|
background: #fff; |
|
|
|
border-radius: 6px; |
|
|
|
margin-bottom: 14px; |
|
|
|
line-height: 26px; |
|
|
|
} |
|
|
|
.card1 { |
|
|
|
} |
|
|
|
|
|
|
|
.card-title { |
|
|
|
font-weight: 600; |
|
|
|
font-size: 20px; |
|
|
|