|
@@ -1018,13 +1018,38 @@
|
1018
|
1018
|
<tr>
|
1019
|
1019
|
<td>
|
1020
|
1020
|
<div class="row" style="padding: 2px 0;line-height:23px;display:flex;">
|
1021
|
|
- <div class="inline_block" style="flex:1;">
|
|
1021
|
+ <div class="inline_block" style="flex:1;" v-if="dialysisOrder.puncture_nurse >0">
|
1022
|
1022
|
穿刺护士:
|
1023
|
1023
|
<div class="under_line" style="width: 80px;text-align: center">
|
1024
|
1024
|
<span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.puncture_nurse)}}</span>
|
1025
|
1025
|
<img style="height:20px;" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.puncture_nurse)" alt="" srcset="" v-else>
|
1026
|
1026
|
</div>
|
1027
|
1027
|
</div>
|
|
1028
|
+ <div class="inline_block" style="flex: 1" v-if="dialysisOrder.change_nurse > 0">
|
|
1029
|
+ 换药护士:
|
|
1030
|
+ <div class="under_line" style="width: 90px; text-align: center">
|
|
1031
|
+ <span style="height: 30px; display: inline-block" v-if="
|
|
1032
|
+ setAdminUserES(
|
|
1033
|
+ dialysisOrder == null
|
|
1034
|
+ ? 0
|
|
1035
|
+ : dialysisOrder.change_nurse
|
|
1036
|
+ ) == ''
|
|
1037
|
+ ">
|
|
1038
|
+ {{
|
|
1039
|
+ getAdminUser(
|
|
1040
|
+ dialysisOrder == null
|
|
1041
|
+ ? 0
|
|
1042
|
+ : dialysisOrder.change_nurse
|
|
1043
|
+ )
|
|
1044
|
+ }}</span>
|
|
1045
|
+ <img style="height:20px;" :src="setAdminUserES(
|
|
1046
|
+ dialysisOrder == null
|
|
1047
|
+ ? 0
|
|
1048
|
+ : dialysisOrder.change_nurse
|
|
1049
|
+ )
|
|
1050
|
+ " alt="" srcset="" v-else />
|
|
1051
|
+ </div>
|
|
1052
|
+ </div>
|
1028
|
1053
|
<div class="inline_block" style="flex:1;">
|
1029
|
1054
|
治疗护士:
|
1030
|
1055
|
<div class="under_line" style="width: 80px;text-align: center">
|
|
@@ -1637,6 +1662,8 @@ export default {
|
1637
|
1662
|
this.users = response.data.data.users
|
1638
|
1663
|
this.patientInfo = response.data.data.patientInfo
|
1639
|
1664
|
this.lastWeight= response.data.data.lastWeight
|
|
1665
|
+ console.log('response.data.data',response.data.data);
|
|
1666
|
+
|
1640
|
1667
|
this.patientInfo.birth = uParseTimeOne(
|
1641
|
1668
|
this.patientInfo.birthday,
|
1642
|
1669
|
'{y}-{m}-{d}'
|