|
@@ -1850,9 +1850,7 @@ export default {
|
1850
|
1850
|
// this.form.breathing_rated = resp.monitor.breathing_rated ? resp.monitor.breathing_rated : '';
|
1851
|
1851
|
this.form.systolic_bp = ""; // this.last_monitor_record.systolic_blood_pressure;
|
1852
|
1852
|
this.form.diastolic_bp = ""; // this.last_monitor_record.diastolic_blood_pressure;
|
1853
|
|
- this.form.blood_flow_volume = resp.monitor.blood_flow_volume
|
1854
|
|
- ? resp.monitor.blood_flow_volume
|
1855
|
|
- : "";
|
|
1853
|
+ this.form.blood_flow_volume = resp.monitor.blood_flow_volume ? resp.monitor.blood_flow_volume: "";
|
1856
|
1854
|
// 静脉压
|
1857
|
1855
|
if (this.org_id == 10060 || this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340 || this.org_id == 10387) {
|
1858
|
1856
|
this.form.venous_pressure = resp.monitor.venous_pressure;
|
|
@@ -1875,9 +1873,12 @@ export default {
|
1875
|
1873
|
} else {
|
1876
|
1874
|
this.form.transmembrane_pressure = ""; // this.last_monitor_record.transmembrane_pressure;
|
1877
|
1875
|
}
|
1878
|
|
- if (this.org_id == 10318 || this.org_id == 9671) {
|
1879
|
|
-
|
|
1876
|
+ if (this.org_id == 10318) {
|
1880
|
1877
|
this.form.breathing_rated = resp.monitor.breathing_rate;
|
|
1878
|
+ }else if(this.org_id == 9671){
|
|
1879
|
+ this.form.breathing_rated = "20"
|
|
1880
|
+ }else if(this.org_id == 10340){
|
|
1881
|
+ this.form.breathing_rated = "20"
|
1881
|
1882
|
} else {
|
1882
|
1883
|
this.form.breathing_rated = "";
|
1883
|
1884
|
}
|
|
@@ -1900,6 +1901,7 @@ export default {
|
1900
|
1901
|
|
1901
|
1902
|
if(this.org_id == 9675 || this.org_id == 9671 || this.org_id == 10340){
|
1902
|
1903
|
this.form.temperature = "36.5"
|
|
1904
|
+
|
1903
|
1905
|
}else{
|
1904
|
1906
|
this.form.temperature = resp.monitor.temperature ? resp.monitor.temperature: "";
|
1905
|
1907
|
}
|
|
@@ -1934,9 +1936,12 @@ export default {
|
1934
|
1936
|
this.form.sodium_concentration = resp.monitor.sodium_concentration
|
1935
|
1937
|
? resp.monitor.sodium_concentration
|
1936
|
1938
|
: "";
|
1937
|
|
- this.form.conductivity = resp.monitor.conductivity
|
1938
|
|
- ? resp.monitor.conductivity
|
1939
|
|
- : "";
|
|
1939
|
+ if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
|
|
1940
|
+ this.form.conductivity = 14
|
|
1941
|
+ }else{
|
|
1942
|
+ this.form.conductivity = resp.monitor.conductivity? resp.monitor.conductivity: "";
|
|
1943
|
+ }
|
|
1944
|
+
|
1940
|
1945
|
this.form.monitor_anticoagulant = resp.monitor.monitor_anticoagulant
|
1941
|
1946
|
? resp.monitor.monitor_anticoagulant
|
1942
|
1947
|
: "";
|
|
@@ -1966,6 +1971,10 @@ export default {
|
1966
|
1971
|
this.form.heparin_amount = resp.monitor.heparin_amount
|
1967
|
1972
|
? resp.monitor.heparin_amount
|
1968
|
1973
|
: "";
|
|
1974
|
+ if(this.org_id == 9671 || this.org_id == 9675 || this.org_id == 10340){
|
|
1975
|
+ this.form.dialysate_temperature = 36.5
|
|
1976
|
+
|
|
1977
|
+ }
|
1969
|
1978
|
});
|
1970
|
1979
|
},
|
1971
|
1980
|
|