|
@@ -219,54 +219,54 @@ const rowClick = (val) => {
|
|
|
let item = mapRef.value[key.value]
|
|
|
let str = ''
|
|
|
if (stringNotBlank(item.patientState)) {
|
|
|
- str += item.patientState
|
|
|
+ str += '病情:' + item.patientState
|
|
|
}
|
|
|
if (stringNotBlank(item.temperature1)) {
|
|
|
- str += ',' + item.temperature1 + item.temperature1Type
|
|
|
+ str += ',' + '体温:' + item.temperature1 + item.temperature1Type
|
|
|
}
|
|
|
if (stringNotBlank(item.heart)) {
|
|
|
- str += ',' + item.heart
|
|
|
+ str += ',' + '心率:' + item.heart
|
|
|
}
|
|
|
if (stringNotBlank(item.pulse1)) {
|
|
|
- str += ',' + item.pulse1
|
|
|
+ str += ',' + '脉搏:' + item.pulse1
|
|
|
}
|
|
|
if (stringNotBlank(item.breathe1)) {
|
|
|
- str += ',' + item.breathe1
|
|
|
+ str += ',' + '呼吸:' + item.breathe1
|
|
|
}
|
|
|
if (stringNotBlank(item.pressure1AmAndPm)) {
|
|
|
- str += ',' + item.pressure1AmAndPm
|
|
|
+ str += ',' + '血压:' + item.pressure1AmAndPm
|
|
|
}
|
|
|
if (stringNotBlank(item.spo2)) {
|
|
|
- str += ',' + item.spo2
|
|
|
+ str += ',' + 'Sp02%:' + item.spo2
|
|
|
}
|
|
|
if (stringNotBlank(item.mind)) {
|
|
|
- str += ',' + item.mind
|
|
|
+ str += ',' + '意识:' + item.mind
|
|
|
}
|
|
|
if (stringNotBlank(item.col1Name)) {
|
|
|
- str += ',' + item.col1Name
|
|
|
+ str += ',' + '入量名称:' + item.col1Name
|
|
|
}
|
|
|
if (stringNotBlank(item.col1Am)) {
|
|
|
- str += ',' + item.col1Am
|
|
|
+ str += ',' + '入量ml:' + item.col1Am
|
|
|
}
|
|
|
if (stringNotBlank(item.col2Name)) {
|
|
|
- str += ',' + item.col2Name
|
|
|
+ str += ',' + '出量名称:' + item.col2Name
|
|
|
}
|
|
|
if (stringNotBlank(item.col2Am)) {
|
|
|
- str += ',' + item.col2Am
|
|
|
+ str += ',' + '出量ml:' + item.col2Am
|
|
|
}
|
|
|
if (stringNotBlank(item.skin)) {
|
|
|
- str += ',' + item.skin
|
|
|
+ str += ',' + '皮肤:' + item.skin
|
|
|
}
|
|
|
if (stringNotBlank(item.tubesName)) {
|
|
|
- str += ',' + item.tubesName
|
|
|
+ str += ',' + '状态:' + item.tubesName
|
|
|
}
|
|
|
if (stringNotBlank(item.tubesStatus)) {
|
|
|
- str += ',' + item.tubesStatus
|
|
|
+ str += ',' + '管道名称:' + item.tubesStatus
|
|
|
}
|
|
|
if (stringNotBlank(item.glu)) {
|
|
|
- str += ',' + item.glu
|
|
|
+ str += ',' + '管道情况:' + item.glu
|
|
|
}
|
|
|
- otherInfo.value = str + mapRef.value[key.value]?.otherInfo
|
|
|
+ otherInfo.value = str + '护理措施及效果:' + mapRef.value[key.value]?.otherInfo
|
|
|
}
|
|
|
const query = () => {
|
|
|
getYzTemperature(patInfo.value.inpatientNo, patInfo.value.admissTimes)
|