|
@@ -508,19 +508,29 @@
|
508
|
508
|
</tr>
|
509
|
509
|
<tr>
|
510
|
510
|
<td colspan="8" style="text-align: left">
|
511
|
|
- <span style="display: inline-block; margin-left: 15px" v-if="predialysis.blood_access_part_opera_name!=''">
|
|
511
|
+ <span
|
|
512
|
+ style="display: inline-block; margin-left: 15px"
|
|
513
|
+ v-if="predialysis.blood_access_part_opera_name != ''"
|
|
514
|
+ >
|
512
|
515
|
血管通路:
|
513
|
516
|
<!-- {{predialysis.blood_access_part_opera_name ?'' :predialysis.blood_access_part_opera_name}} -->
|
514
|
|
- <span
|
515
|
|
- v-for="(item, index) in arrtwo"
|
516
|
|
- :key="index"
|
517
|
|
- >
|
518
|
|
- {{predialysis.blood_access_part_opera_id == item.id ? item.name :''}}
|
|
517
|
+ <span v-for="(item, index) in arrtwo" :key="index">
|
|
518
|
+ {{
|
|
519
|
+ predialysis.blood_access_part_opera_id == item.id
|
|
520
|
+ ? item.name
|
|
521
|
+ : ""
|
|
522
|
+ }}
|
519
|
523
|
</span>
|
520
|
524
|
部位:
|
521
|
|
- {{predialysis.blood_access_part_id ? predialysis.blood_access_part_id : ''}}
|
522
|
|
-
|
523
|
|
- 内瘘:{{predialysis.internal_fistula == ""?'无':predialysis.internal_fistula}}
|
|
525
|
+ {{
|
|
526
|
+ predialysis.blood_access_part_id
|
|
527
|
+ ? predialysis.blood_access_part_id
|
|
528
|
+ : ""
|
|
529
|
+ }} 内瘘:{{
|
|
530
|
+ predialysis.internal_fistula == ""
|
|
531
|
+ ? "无"
|
|
532
|
+ : predialysis.internal_fistula
|
|
533
|
+ }}
|
524
|
534
|
<!-- <label-box
|
525
|
535
|
v-for="(item, index) in arrtwo"
|
526
|
536
|
:key="index"
|
|
@@ -539,23 +549,26 @@
|
539
|
549
|
</tr>
|
540
|
550
|
<tr>
|
541
|
551
|
<td colspan="8" style="text-align: left">
|
542
|
|
- <span v-if="predialysis.venous_catheterization==1||predialysis.venous_catheterization==2">
|
|
552
|
+ <span
|
|
553
|
+ v-if="
|
|
554
|
+ predialysis.venous_catheterization == 1 ||
|
|
555
|
+ predialysis.venous_catheterization == 2
|
|
556
|
+ "
|
|
557
|
+ >
|
543
|
558
|
<span style="display: inline-block; margin-left: 15px"
|
544
|
|
- >中心静脉导管: {{predialysis.venous_catheterization == 1?'长期':'临时'}}</span
|
545
|
|
- >
|
546
|
|
- <!-- (部位:{{ getPartName(predialysis.blood_access_part_id) }}) -->
|
547
|
|
- 部位:{{ predialysis.blood_access_part_id }}
|
548
|
|
- <span v-if="predialysis.is_infect!=0">
|
549
|
|
- 感染:<span v-if="predialysis.is_infect==1">
|
550
|
|
- 无
|
551
|
|
- </span>
|
552
|
|
- <span v-if="predialysis.is_infect==2">
|
553
|
|
- 有
|
554
|
|
- </span>
|
555
|
|
- </span>
|
556
|
|
-
|
557
|
|
-
|
558
|
|
- <!-- <span v-if="predialysis.catheter.indexOf('通畅度-好') > -1||predialysis.catheter.indexOf('通畅度-差') > -1||predialysis.catheter.indexOf('通畅度-一般') > -1">
|
|
559
|
+ >中心静脉导管:
|
|
560
|
+ {{
|
|
561
|
+ predialysis.venous_catheterization == 1 ? "长期" : "临时"
|
|
562
|
+ }}</span
|
|
563
|
+ >
|
|
564
|
+ <!-- (部位:{{ getPartName(predialysis.blood_access_part_id) }}) -->
|
|
565
|
+ 部位:{{ predialysis.blood_access_part_id }}
|
|
566
|
+ <span v-if="predialysis.is_infect != 0">
|
|
567
|
+ 感染:<span v-if="predialysis.is_infect == 1"> 无 </span>
|
|
568
|
+ <span v-if="predialysis.is_infect == 2"> 有 </span> </span
|
|
569
|
+ >
|
|
570
|
+
|
|
571
|
+ <!-- <span v-if="predialysis.catheter.indexOf('通畅度-好') > -1||predialysis.catheter.indexOf('通畅度-差') > -1||predialysis.catheter.indexOf('通畅度-一般') > -1">
|
559
|
572
|
流畅度:
|
560
|
573
|
<span v-if="predialysis.catheter.indexOf('通畅度-好') > -1">
|
561
|
574
|
好
|
|
@@ -574,13 +587,12 @@
|
574
|
587
|
<span v-if="predialysis.catheter.indexOf('溶栓-无') > -1">无</span>
|
575
|
588
|
</span> -->
|
576
|
589
|
|
577
|
|
- <span v-if="predialysis.catheter!=''">
|
578
|
|
- 导管情况:<span>{{predialysis.catheter}}</span>
|
579
|
|
- </span>
|
580
|
|
- <span v-if="predialysis.exposed!=0">
|
581
|
|
- 外露:{{ predialysis.exposed }}cm
|
582
|
|
- </span>
|
583
|
|
-
|
|
590
|
+ <span v-if="predialysis.catheter != ''">
|
|
591
|
+ 导管情况:<span>{{ predialysis.catheter }}</span> </span
|
|
592
|
+ >
|
|
593
|
+ <span v-if="predialysis.exposed != 0">
|
|
594
|
+ 外露:{{ predialysis.exposed }}cm
|
|
595
|
+ </span>
|
584
|
596
|
</span>
|
585
|
597
|
<span style="display: inline-block; margin-left: 15px" v-else>
|
586
|
598
|
中心静脉导管:无
|
|
@@ -1100,22 +1112,19 @@
|
1100
|
1112
|
</tr>
|
1101
|
1113
|
<tr>
|
1102
|
1114
|
<td style="text-align: left" colspan="4">
|
1103
|
|
- <span>
|
1104
|
|
- <span style="display: flex; align-items: center; height: 36px"
|
1105
|
|
- >负责护士:<span
|
1106
|
|
- v-if="
|
1107
|
|
- setAdminUserES(
|
1108
|
|
- dialysisOrder == null ? 0 : dialysisOrder.start_nurse
|
1109
|
|
- ) == ''
|
1110
|
|
- "
|
1111
|
|
- >
|
1112
|
|
- {{
|
1113
|
|
- getAdminUser(
|
1114
|
|
- dialysisOrder == null ? 0 : dialysisOrder.start_nurse
|
1115
|
|
- )
|
1116
|
|
- }}
|
1117
|
|
- </span></span
|
1118
|
|
- >
|
|
1115
|
+ <span style="display: inline-block; margin-left: 15px">
|
|
1116
|
+ <span
|
|
1117
|
+ v-if="orderForm.url === ''"
|
|
1118
|
+ style="display: flex; align-items: center"
|
|
1119
|
+ >责任护士:{{ orderForm.start_nurse }}
|
|
1120
|
+ </span>
|
|
1121
|
+
|
|
1122
|
+ <span
|
|
1123
|
+ v-if="orderForm.url !== ''"
|
|
1124
|
+ style="display: flex; align-items: center; height: 36px">
|
|
1125
|
+ 责任护士:
|
|
1126
|
+ <img :src="orderForm.url" style="height: 30px" />
|
|
1127
|
+ </span>
|
1119
|
1128
|
</span>
|
1120
|
1129
|
</td>
|
1121
|
1130
|
<td style="text-align: left" colspan="4">
|
|
@@ -1129,6 +1138,22 @@
|
1129
|
1138
|
>
|
1130
|
1139
|
{{ getAdminUser(check == null ? 0 : check.modifier) }}
|
1131
|
1140
|
</span>
|
|
1141
|
+ <span
|
|
1142
|
+ v-else
|
|
1143
|
+ style="
|
|
1144
|
+ display: flex;
|
|
1145
|
+ align-items: center;
|
|
1146
|
+ justify-content: space-around;
|
|
1147
|
+ height: 36px;
|
|
1148
|
+ "
|
|
1149
|
+ >
|
|
1150
|
+ <img
|
|
1151
|
+ style="height: 30px"
|
|
1152
|
+ :src="setAdminUserES(check.modifier)"
|
|
1153
|
+ alt
|
|
1154
|
+ srcset
|
|
1155
|
+ />
|
|
1156
|
+ </span>
|
1132
|
1157
|
</span>
|
1133
|
1158
|
</span>
|
1134
|
1159
|
</td>
|
|
@@ -1747,6 +1772,7 @@ export default {
|
1747
|
1772
|
return name;
|
1748
|
1773
|
},
|
1749
|
1774
|
setAdminUserES(id) {
|
|
1775
|
+ console.log(this.operatorMaps, "this.operatorMaps");
|
1750
|
1776
|
if (id === 0) {
|
1751
|
1777
|
return "";
|
1752
|
1778
|
}
|