|
@@ -375,17 +375,13 @@
|
375
|
375
|
<check-box
|
376
|
376
|
text="正常"
|
377
|
377
|
:checked="
|
378
|
|
- predialysis.catheter.indexOf('正常') > -1
|
379
|
|
- ? true
|
380
|
|
- : false
|
|
378
|
+ predialysis.catheter.indexOf('正常') > -1 ? true : false
|
381
|
379
|
"
|
382
|
380
|
></check-box>
|
383
|
381
|
<check-box
|
384
|
382
|
text="不畅"
|
385
|
383
|
:checked="
|
386
|
|
- predialysis.catheter.indexOf('不畅') > -1
|
387
|
|
- ? true
|
388
|
|
- : false
|
|
384
|
+ predialysis.catheter.indexOf('不畅') > -1 ? true : false
|
389
|
385
|
"
|
390
|
386
|
></check-box>
|
391
|
387
|
<check-box
|
|
@@ -399,27 +395,21 @@
|
399
|
395
|
(<check-box
|
400
|
396
|
text="正接"
|
401
|
397
|
:checked="
|
402
|
|
- predialysis.catheter.indexOf('正接') > -1
|
403
|
|
- ? true
|
404
|
|
- : false
|
|
398
|
+ predialysis.catheter.indexOf('正接') > -1 ? true : false
|
405
|
399
|
"
|
406
|
400
|
></check-box
|
407
|
401
|
>/
|
408
|
402
|
<check-box
|
409
|
403
|
text="反接"
|
410
|
404
|
:checked="
|
411
|
|
- predialysis.catheter.indexOf('反接') > -1
|
412
|
|
- ? true
|
413
|
|
- : false
|
|
405
|
+ predialysis.catheter.indexOf('反接') > -1 ? true : false
|
414
|
406
|
"
|
415
|
407
|
></check-box
|
416
|
408
|
>)
|
417
|
409
|
<check-box
|
418
|
410
|
text="血栓"
|
419
|
411
|
:checked="
|
420
|
|
- predialysis.catheter.indexOf('血栓') > -1
|
421
|
|
- ? true
|
422
|
|
- : false
|
|
412
|
+ predialysis.catheter.indexOf('血栓') > -1 ? true : false
|
423
|
413
|
"
|
424
|
414
|
></check-box>
|
425
|
415
|
<check-box
|
|
@@ -441,17 +431,13 @@
|
441
|
431
|
<check-box
|
442
|
432
|
text="感染"
|
443
|
433
|
:checked="
|
444
|
|
- predialysis.catheter.indexOf('感染') > -1
|
445
|
|
- ? true
|
446
|
|
- : false
|
|
434
|
+ predialysis.catheter.indexOf('感染') > -1 ? true : false
|
447
|
435
|
"
|
448
|
436
|
></check-box>
|
449
|
437
|
<check-box
|
450
|
438
|
text="破损"
|
451
|
439
|
:checked="
|
452
|
|
- predialysis.catheter.indexOf('破损') > -1
|
453
|
|
- ? true
|
454
|
|
- : false
|
|
440
|
+ predialysis.catheter.indexOf('破损') > -1 ? true : false
|
455
|
441
|
"
|
456
|
442
|
></check-box>
|
457
|
443
|
</div>
|
|
@@ -1166,14 +1152,13 @@
|
1166
|
1152
|
"
|
1167
|
1153
|
></check-box>
|
1168
|
1154
|
<check-box
|
1169
|
|
- text="正常"
|
|
1155
|
+ text="不存在"
|
1170
|
1156
|
:checked="
|
1171
|
1157
|
afterdialysis.internal_fistula.indexOf('不存在') > -1
|
1172
|
1158
|
? true
|
1173
|
1159
|
: false
|
1174
|
1160
|
"
|
1175
|
1161
|
></check-box>
|
1176
|
|
-
|
1177
|
1162
|
</div>
|
1178
|
1163
|
<div class="inline_block">
|
1179
|
1164
|
 失衡综合症:
|
|
@@ -1196,14 +1181,38 @@
|
1196
|
1181
|
</div>
|
1197
|
1182
|
<div class="inline_block">
|
1198
|
1183
|
(
|
1199
|
|
- <label-box :isChecked="afterdialysis.complications_index.indexOf('头晕')>-1?true:false"
|
1200
|
|
- showValue='头晕'></label-box>
|
1201
|
|
- <label-box :isChecked="afterdialysis.complications_index.indexOf('头痛')>-1?true:false"
|
1202
|
|
- showValue='头痛'></label-box>
|
1203
|
|
- <label-box :isChecked="afterdialysis.complications_index.indexOf('呕吐')>-1?true:false"
|
1204
|
|
- showValue='呕吐'></label-box>
|
1205
|
|
- <label-box :isChecked="afterdialysis.complications_index.indexOf('低血压')>-1?true:false"
|
1206
|
|
- showValue='低血压'></label-box>
|
|
1184
|
+ <label-box
|
|
1185
|
+ :isChecked="
|
|
1186
|
+ afterdialysis.complications_index.indexOf('头晕') > -1
|
|
1187
|
+ ? true
|
|
1188
|
+ : false
|
|
1189
|
+ "
|
|
1190
|
+ showValue="头晕"
|
|
1191
|
+ ></label-box>
|
|
1192
|
+ <label-box
|
|
1193
|
+ :isChecked="
|
|
1194
|
+ afterdialysis.complications_index.indexOf('头痛') > -1
|
|
1195
|
+ ? true
|
|
1196
|
+ : false
|
|
1197
|
+ "
|
|
1198
|
+ showValue="头痛"
|
|
1199
|
+ ></label-box>
|
|
1200
|
+ <label-box
|
|
1201
|
+ :isChecked="
|
|
1202
|
+ afterdialysis.complications_index.indexOf('呕吐') > -1
|
|
1203
|
+ ? true
|
|
1204
|
+ : false
|
|
1205
|
+ "
|
|
1206
|
+ showValue="呕吐"
|
|
1207
|
+ ></label-box>
|
|
1208
|
+ <label-box
|
|
1209
|
+ :isChecked="
|
|
1210
|
+ afterdialysis.complications_index.indexOf('低血压') > -1
|
|
1211
|
+ ? true
|
|
1212
|
+ : false
|
|
1213
|
+ "
|
|
1214
|
+ showValue="低血压"
|
|
1215
|
+ ></label-box>
|
1207
|
1216
|
)
|
1208
|
1217
|
</div>
|
1209
|
1218
|
</div>
|
|
@@ -1256,23 +1265,13 @@
|
1256
|
1265
|
></check-box>
|
1257
|
1266
|
</div>
|
1258
|
1267
|
<div class="inline_block">
|
1259
|
|
- 透析器:
|
1260
|
|
- <check-box
|
1261
|
|
- text="0"
|
1262
|
|
- :checked="afterdialysis.dialyzer == 1 ? true : false"
|
1263
|
|
- ></check-box>
|
1264
|
|
- <check-box
|
1265
|
|
- text="+"
|
1266
|
|
- :checked="afterdialysis.dialyzer == 2 ? true : false"
|
1267
|
|
- ></check-box>
|
1268
|
|
- <check-box
|
1269
|
|
- text="++"
|
1270
|
|
- :checked="afterdialysis.dialyzer == 3 ? true : false"
|
1271
|
|
- ></check-box>
|
1272
|
|
- <check-box
|
1273
|
|
- text="+++"
|
1274
|
|
- :checked="afterdialysis.dialyzer == 4 ? true : false"
|
1275
|
|
- ></check-box>
|
|
1268
|
+ 透析器凝血:
|
|
1269
|
+ <div
|
|
1270
|
+ class="under_line"
|
|
1271
|
+ style="width:200px;text-align:center;"
|
|
1272
|
+ >
|
|
1273
|
+ {{ afterdialysis.cruor ? afterdialysis.cruor : "/" }}
|
|
1274
|
+ </div>
|
1276
|
1275
|
</div>
|
1277
|
1276
|
</div>
|
1278
|
1277
|
</td>
|
|
@@ -2702,7 +2701,17 @@ export default {
|
2702
|
2701
|
this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
|
2703
|
2702
|
this.predialysis.blood_access_part_opera_id
|
2704
|
2703
|
);
|
2705
|
|
- this.afterdialysis = response.data.data.AssessmentAfterDislysis;
|
|
2704
|
+ var afterdialysis = response.data.data.AssessmentAfterDislysis;
|
|
2705
|
+ console.log("长度", afterdialysis.complications_index);
|
|
2706
|
+ if (afterdialysis.complications_index === undefined) {
|
|
2707
|
+ afterdialysis.disequilibrium_syndrome = 1;
|
|
2708
|
+ }
|
|
2709
|
+ if (afterdialysis.complications_index != undefined) {
|
|
2710
|
+ afterdialysis.disequilibrium_syndrome = 2;
|
|
2711
|
+ }
|
|
2712
|
+ this.afterdialysis = afterdialysis;
|
|
2713
|
+
|
|
2714
|
+ console.log("透后数据", this.afterdialysis);
|
2706
|
2715
|
this.operators = response.data.data.operators;
|
2707
|
2716
|
this.dialysisOrder =
|
2708
|
2717
|
response.data.data.dialysisOrder === null
|