|
@@ -1694,27 +1694,27 @@ export default {
|
1694
|
1694
|
for (let i in this.monitors) {
|
1695
|
1695
|
if (this.monitors[i].operate_time != null) {
|
1696
|
1696
|
if (this.monitors[i].blood_flow_volume == 0 ||
|
1697
|
|
- this.prescription.blood_flow_volume < 180 ||
|
1698
|
|
- this.prescription.blood_flow_volume > 300
|
|
1697
|
+ this.monitors[i].blood_flow_volume < 180 ||
|
|
1698
|
+ this.monitors[i].blood_flow_volume > 300
|
1699
|
1699
|
) {
|
1700
|
1700
|
const obj55 = '监测第' + ((i * 1) + 1) + '行血流量'
|
1701
|
|
- monearr.push(obj55)
|
|
1701
|
+ checkDate.push(obj55)
|
1702
|
1702
|
} if (this.monitors[i].venous_pressure == 0 ||
|
1703
|
1703
|
this.monitors[i].venous_pressure < 20 ||
|
1704
|
1704
|
this.monitors[i].venous_pressure > 150
|
1705
|
1705
|
) {
|
1706
|
1706
|
const obj56 = '监测第' + ((i * 1) + 1) + '行静脉压'
|
1707
|
|
- monearr.push(obj56)
|
|
1707
|
+ checkDate.push(obj56)
|
1708
|
1708
|
} if (this.monitors[i].ultrafiltration_rate == 0) {
|
1709
|
1709
|
const obj57 = '监测第' + ((i * 1) + 1) + '行超滤率'
|
1710
|
|
- monearr.push(obj57)
|
|
1710
|
+ checkDate.push(obj57)
|
1711
|
1711
|
} if (this.monitors[i].ultrafiltration_volume == 0 && i != 0) {
|
1712
|
1712
|
const obj53 = '监测第' + ((i * 1) + 1) + '行超滤量'
|
1713
|
|
- monearr.push(obj53)
|
|
1713
|
+ checkDate.push(obj53)
|
1714
|
1714
|
} if (this.monitors[i].replacement_rate == 0 && this.prescription.mode == 'HDF'
|
1715
|
1715
|
) {
|
1716
|
1716
|
const obj58 = '监测第' + ((i * 1) + 1) + '行置换率'
|
1717
|
|
- monearr.push(obj58)
|
|
1717
|
+ checkDate.push(obj58)
|
1718
|
1718
|
}
|
1719
|
1719
|
// if(this.monitors[i].displacement_quantity == 0 && this.prescription.mode =='HDF'&& i !=0){
|
1720
|
1720
|
// const obj54 = '监测第'+((i*1)+1)+'行置换量'
|
|
@@ -1725,19 +1725,19 @@ export default {
|
1725
|
1725
|
) {
|
1726
|
1726
|
// this.monitors[i].temperature == 0
|
1727
|
1727
|
const obj59 = '监测第' + ((i * 1) + 1) + '行钠浓度'
|
1728
|
|
- monearr.push(obj59)
|
|
1728
|
+ checkDate.push(obj59)
|
1729
|
1729
|
} if (this.monitors[i].pulse_frequency == 0 ||
|
1730
|
1730
|
this.monitors[i].pulse_frequency < 60 ||
|
1731
|
1731
|
this.monitors[i].pulse_frequency > 100
|
1732
|
1732
|
) {
|
1733
|
1733
|
const obj60 = '监测第' + ((i * 1) + 1) + '行脉搏'
|
1734
|
|
- monearr.push(obj60)
|
|
1734
|
+ checkDate.push(obj60)
|
1735
|
1735
|
} if (this.monitors[i].breathing_rate == 0 ||
|
1736
|
1736
|
this.monitors[i].breathing_rate < 12 ||
|
1737
|
1737
|
this.monitors[i].breathing_rate > 20
|
1738
|
1738
|
) {
|
1739
|
1739
|
const obj61 = '监测第' + ((i * 1) + 1) + '行呼吸'
|
1740
|
|
- monearr.push(obj61)
|
|
1740
|
+ checkDate.push(obj61)
|
1741
|
1741
|
} if (this.monitors[i].systolic_blood_pressure == 0 ||
|
1742
|
1742
|
this.monitors[i].systolic_blood_pressure < 90 ||
|
1743
|
1743
|
this.monitors[i].systolic_blood_pressure > 180 ||
|
|
@@ -1746,27 +1746,28 @@ export default {
|
1746
|
1746
|
this.monitors[i].diastolic_blood_pressure > 120
|
1747
|
1747
|
) {
|
1748
|
1748
|
const obj62 = '监测第' + ((i * 1) + 1) + '行血压'
|
1749
|
|
- monearr.push(obj62)
|
1750
|
|
- } if (this.monitors[i].temperature == 0||
|
1751
|
|
- this.monitors[i].temperature < 36 ||
|
1752
|
|
- this.monitors[i].temperature > 37
|
|
1749
|
+ checkDate.push(obj62)
|
|
1750
|
+ } if (this.monitors[i].temperature == 0 ||
|
|
1751
|
+ this.monitors[i].temperature < 36 ||
|
|
1752
|
+ this.monitors[i].temperature > 37
|
1753
|
1753
|
) {
|
1754
|
1754
|
const obj51 = '监测第' + ((i * 1) + 1) + '行温度'
|
1755
|
|
- monearr.push(obj51)
|
|
1755
|
+ checkDate.push(obj51)
|
1756
|
1756
|
} if (this.monitors[i].transmembrane_pressure == 0 ||
|
1757
|
1757
|
this.monitors[i].transmembrane_pressure < 20 ||
|
1758
|
1758
|
this.monitors[i].transmembrane_pressure > 300
|
1759
|
1759
|
) {
|
1760
|
1760
|
const obj52 = '监测第' + ((i * 1) + 1) + '行跨膜压'
|
1761
|
|
- monearr.push(obj52)
|
|
1761
|
+ checkDate.push(obj52)
|
1762
|
1762
|
}
|
1763
|
1763
|
}
|
1764
|
1764
|
}
|
1765
|
1765
|
}
|
1766
|
1766
|
if (monearr.length > 0) {
|
1767
|
1767
|
checkDate = checkDate.concat(monearr)
|
1768
|
|
- console.log('1111', checkDate.concat(monearr));
|
|
1768
|
+
|
1769
|
1769
|
}
|
|
1770
|
+ console.log('1111', checkDate);
|
1770
|
1771
|
this.getcheckData(checkDate)
|
1771
|
1772
|
},
|
1772
|
1773
|
getDisplaceLiquiPart: function (val) {
|