|
@@ -697,17 +697,17 @@
|
697
|
697
|
</div>
|
698
|
698
|
</td>
|
699
|
699
|
<td>
|
700
|
|
- <span
|
701
|
|
- v-if="setAdminUserES(predialysis.modifier) == ''"
|
702
|
|
- >{{ getAdminUser(predialysis.modifier) }}</span
|
703
|
|
- >
|
704
|
|
- <img
|
705
|
|
- class="es-img"
|
706
|
|
- :src="setAdminUserES(predialysis.modifier)"
|
707
|
|
- alt=""
|
708
|
|
- srcset=""
|
709
|
|
- v-else
|
710
|
|
- />
|
|
700
|
+ <!--<span-->
|
|
701
|
+ <!--v-if="setAdminUserES(predialysis.modifier) == ''"-->
|
|
702
|
+ <!-->{{ getAdminUser(predialysis.modifier) }}</span-->
|
|
703
|
+ <!-->-->
|
|
704
|
+ <!--<img-->
|
|
705
|
+ <!--class="es-img"-->
|
|
706
|
+ <!--:src="setAdminUserES(predialysis.modifier)"-->
|
|
707
|
+ <!--alt=""-->
|
|
708
|
+ <!--srcset=""-->
|
|
709
|
+ <!--v-else-->
|
|
710
|
+ <!--/>-->
|
711
|
711
|
</td>
|
712
|
712
|
</tr>
|
713
|
713
|
|
|
@@ -1138,7 +1138,7 @@
|
1138
|
1138
|
<check-box
|
1139
|
1139
|
text="正常"
|
1140
|
1140
|
:checked="
|
1141
|
|
- afterdialysis.internal_fistula.indexOf('震颤-存在') > -1
|
|
1141
|
+ afterdialysis.internal_fistula.indexOf('正常') > -1
|
1142
|
1142
|
? true
|
1143
|
1143
|
: false
|
1144
|
1144
|
"
|
|
@@ -1146,7 +1146,7 @@
|
1146
|
1146
|
<check-box
|
1147
|
1147
|
text="减弱"
|
1148
|
1148
|
:checked="
|
1149
|
|
- afterdialysis.internal_fistula.indexOf('震颤-减弱') > -1
|
|
1149
|
+ afterdialysis.internal_fistula.indexOf('减弱') > -1
|
1150
|
1150
|
? true
|
1151
|
1151
|
: false
|
1152
|
1152
|
"
|
|
@@ -1165,7 +1165,7 @@
|
1165
|
1165
|
<check-box
|
1166
|
1166
|
text="无"
|
1167
|
1167
|
:checked="
|
1168
|
|
- afterdialysis.disequilibrium_syndrome == 1
|
|
1168
|
+ afterdialysis.complication.indexOf('无') > -1
|
1169
|
1169
|
? true
|
1170
|
1170
|
: false
|
1171
|
1171
|
"
|
|
@@ -1173,7 +1173,10 @@
|
1173
|
1173
|
<check-box
|
1174
|
1174
|
text="有"
|
1175
|
1175
|
:checked="
|
1176
|
|
- afterdialysis.disequilibrium_syndrome == 2
|
|
1176
|
+ afterdialysis.complication.indexOf('头晕') > -1 ||
|
|
1177
|
+ afterdialysis.complication.indexOf('头痛') > -1||
|
|
1178
|
+ afterdialysis.complication.indexOf('呕吐') > -1||
|
|
1179
|
+ afterdialysis.complication.indexOf('低血压') > -1
|
1177
|
1180
|
? true
|
1178
|
1181
|
: false
|
1179
|
1182
|
"
|
|
@@ -1183,7 +1186,7 @@
|
1183
|
1186
|
(
|
1184
|
1187
|
<label-box
|
1185
|
1188
|
:isChecked="
|
1186
|
|
- afterdialysis.complications_index.indexOf('头晕') > -1
|
|
1189
|
+ afterdialysis.complication.indexOf('头晕') > -1
|
1187
|
1190
|
? true
|
1188
|
1191
|
: false
|
1189
|
1192
|
"
|
|
@@ -1191,7 +1194,7 @@
|
1191
|
1194
|
></label-box>
|
1192
|
1195
|
<label-box
|
1193
|
1196
|
:isChecked="
|
1194
|
|
- afterdialysis.complications_index.indexOf('头痛') > -1
|
|
1197
|
+ afterdialysis.complication.indexOf('头痛') > -1
|
1195
|
1198
|
? true
|
1196
|
1199
|
: false
|
1197
|
1200
|
"
|
|
@@ -1199,7 +1202,7 @@
|
1199
|
1202
|
></label-box>
|
1200
|
1203
|
<label-box
|
1201
|
1204
|
:isChecked="
|
1202
|
|
- afterdialysis.complications_index.indexOf('呕吐') > -1
|
|
1205
|
+ afterdialysis.complication.indexOf('呕吐') > -1
|
1203
|
1206
|
? true
|
1204
|
1207
|
: false
|
1205
|
1208
|
"
|
|
@@ -1207,7 +1210,7 @@
|
1207
|
1210
|
></label-box>
|
1208
|
1211
|
<label-box
|
1209
|
1212
|
:isChecked="
|
1210
|
|
- afterdialysis.complications_index.indexOf('低血压') > -1
|
|
1213
|
+ afterdialysis.complication.indexOf('低血压') > -1
|
1211
|
1214
|
? true
|
1212
|
1215
|
: false
|
1213
|
1216
|
"
|