|
|
@ -163,6 +163,11 @@ |
|
|
|
prop="SCWJ-JL" |
|
|
|
min-width="150" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span :class="`BIMTips${BMIVerdict[scope.row['SCWJ-JL']]}`"> |
|
|
|
{{ scope.row["SCWJ-JL"] || "- - -" }} |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
label="失眠自评(SRSS)" |
|
|
@ -222,6 +227,12 @@ export default { |
|
|
|
dicts: ["sys_notice_status", "sys_notice_type"], |
|
|
|
data() { |
|
|
|
return { |
|
|
|
BMIVerdict: { |
|
|
|
体重过轻: "1", |
|
|
|
正常: "2", |
|
|
|
超重: "3", |
|
|
|
肥胖: "4", |
|
|
|
}, |
|
|
|
queryTime: [], // 创建时间范围 |
|
|
|
tenantsListData: [], // 组织列表 |
|
|
|
loading: false, // 遮罩层 |
|
|
@ -344,6 +355,18 @@ export default { |
|
|
|
</script> |
|
|
|
<style scoped src="@/assets/styles/common.css"></style> |
|
|
|
<style scoped> |
|
|
|
.BIMTips1 { |
|
|
|
color: #cccccc; |
|
|
|
} |
|
|
|
.BIMTips2 { |
|
|
|
color: #66cc00; |
|
|
|
} |
|
|
|
.BIMTips3 { |
|
|
|
color: #c3c300; |
|
|
|
} |
|
|
|
.BIMTips4 { |
|
|
|
color: #ff9900; |
|
|
|
} |
|
|
|
.form-item-age { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|