|
@@ -93,7 +93,7 @@
|
93
|
93
|
{{ record.device_number.number }}
|
94
|
94
|
</div>
|
95
|
95
|
</div>
|
96
|
|
- <div class="inline_block">
|
|
96
|
+ <div class="inline_block" v-if="org_id!=10683">
|
97
|
97
|
透析号:
|
98
|
98
|
<div class="under_line" style="width: 70px; text-align: center">
|
99
|
99
|
{{ record.patient.dialysis_no }}
|
|
@@ -1459,6 +1459,23 @@
|
1459
|
1459
|
</div>
|
1460
|
1460
|
</div>
|
1461
|
1461
|
|
|
1462
|
+ <div class="inline_block" style="margin-left: 20px">
|
|
1463
|
+ 上机时间:
|
|
1464
|
+ <div
|
|
1465
|
+ class="under_line"
|
|
1466
|
+ style="width: 50px; text-align: center"
|
|
1467
|
+ >
|
|
1468
|
+ {{
|
|
1469
|
+ record.dialysis_order &&
|
|
1470
|
+ record.dialysis_order.device_number &&
|
|
1471
|
+ record.dialysis_order.device_number.number.length >
|
|
1472
|
+ 0
|
|
1473
|
+ ? record.dialysis_order.device_number.number
|
|
1474
|
+ : record.device_number.number
|
|
1475
|
+ }}
|
|
1476
|
+ </div>
|
|
1477
|
+ </div>
|
|
1478
|
+
|
1462
|
1479
|
|
1463
|
1480
|
<div
|
1464
|
1481
|
class="row"
|
|
@@ -1910,7 +1927,7 @@
|
1910
|
1927
|
>
|
1911
|
1928
|
<template
|
1912
|
1929
|
v-if="
|
1913
|
|
- record.dialysis_order &&
|
|
1930
|
+ record.dialysis_order && org_id!=10683 &&
|
1914
|
1931
|
monitor_record.operate_time ==
|
1915
|
1932
|
record.dialysis_order.start_time
|
1916
|
1933
|
"
|
|
@@ -2597,7 +2614,7 @@
|
2597
|
2614
|
{{ "/" }}
|
2598
|
2615
|
</div>
|
2599
|
2616
|
</div>
|
2600
|
|
- <div class="inline_block">
|
|
2617
|
+ <div class="inline_block" v-if="org_id!=10683">
|
2601
|
2618
|
透析号:
|
2602
|
2619
|
<div class="under_line" style="width: 70px; text-align: center">
|
2603
|
2620
|
{{ record.patient.dialysis_no }}
|
|
@@ -3806,15 +3823,24 @@ export default {
|
3806
|
3823
|
for(let j=0;j<this.records[i].monitor_records.length;j++){
|
3807
|
3824
|
this.records[i].monitor_records[j].end = ""
|
3808
|
3825
|
if (this.records[i].dialysis_order &&this.records[i].monitor_records[j].operate_time == this.records[i].dialysis_order.end_time) {
|
3809
|
|
- this.records[i].monitor_records[j].end = "【结束透析】";
|
3810
|
|
- tempmonitorflag = false;
|
|
3826
|
+ if(this.org_id!=10683){
|
|
3827
|
+ this.records[i].monitor_records[j].end = "【结束透析】";
|
|
3828
|
+ }
|
|
3829
|
+
|
|
3830
|
+ tempmonitorflag = false;
|
3811
|
3831
|
}
|
3812
|
3832
|
if(this.org_id!=10515 && this.org_id!=0){
|
3813
|
3833
|
if (tempmonitorflag && j == this.records[i].monitor_records.length - 1) {
|
3814
|
|
- this.records[i].monitor_records[j].end = "【结束透析】";
|
|
3834
|
+ if(this.org_id!=10683){
|
|
3835
|
+ this.records[i].monitor_records[j].end = "【结束透析】";
|
|
3836
|
+ }
|
|
3837
|
+
|
3815
|
3838
|
}
|
3816
|
3839
|
if(this.records[i].monitor_records[this.records[i].monitor_records.length - 1].end == ""){
|
3817
|
|
- this.records[i].monitor_records[this.records[i].monitor_records.length - 1].end = "【结束透析】"
|
|
3840
|
+ if(this.org_id!=10683){
|
|
3841
|
+ this.records[i].monitor_records[this.records[i].monitor_records.length - 1].end = "【结束透析】"
|
|
3842
|
+ }
|
|
3843
|
+
|
3818
|
3844
|
}
|
3819
|
3845
|
}
|
3820
|
3846
|
|