|
@@ -1248,9 +1248,9 @@ export default {
|
1248
|
1248
|
this.fetchPatientDialysisSolutions();
|
1249
|
1249
|
},
|
1250
|
1250
|
openEdit(index, row) {
|
1251
|
|
- console.log(row);
|
|
1251
|
+
|
1252
|
1252
|
this.current_index = index;
|
1253
|
|
-
|
|
1253
|
+
|
1254
|
1254
|
this.addPlan.id = row.id;
|
1255
|
1255
|
this.addPlan.mode = row.mode_id;
|
1256
|
1256
|
this.addPlan.mode_name = row.mode_name;
|
|
@@ -1262,7 +1262,12 @@ export default {
|
1262
|
1262
|
this.addPlan.hemodialysis_machine = row.hemodialysis_machine + "";
|
1263
|
1263
|
this.addPlan.perfusion_apparatus = row.perfusion_apparatus + "";
|
1264
|
1264
|
this.addPlan.blood_flow_volume = row.blood_flow_volume.toString();
|
1265
|
|
- this.addPlan.anticoagulant = row.anticoagulant;
|
|
1265
|
+ if(row.anticoagulant == 3){
|
|
1266
|
+ this.addPlan.anticoagulant = "低分子肝素"
|
|
1267
|
+ }
|
|
1268
|
+ if(row.anticoagulant != 3){
|
|
1269
|
+ this.addPlan.anticoagulant = row.anticoagulant;
|
|
1270
|
+ }
|
1266
|
1271
|
this.addPlan.replacement_total = row.replacement_total;
|
1267
|
1272
|
|
1268
|
1273
|
this.addPlan.target_ktv = row.target_ktv.toString();
|
|
@@ -1292,7 +1297,7 @@ export default {
|
1292
|
1297
|
this.addPlan.displace_liqui_value = row.displace_liqui_value.toString();
|
1293
|
1298
|
this.addPlan.ultrafiltration = row.ultrafiltration.toString();
|
1294
|
1299
|
this.addPlan.blood_access = row.blood_access;
|
1295
|
|
-
|
|
1300
|
+
|
1296
|
1301
|
this.addPlan.registrars_id = row.registrars_id;
|
1297
|
1302
|
|
1298
|
1303
|
this.dialogVisible = true;
|
|
@@ -1655,6 +1660,7 @@ export default {
|
1655
|
1660
|
// this.fetchAllDoctorAndNurse();
|
1656
|
1661
|
this.fetchAllAdminUsers();
|
1657
|
1662
|
this.fetchPatientDialysisSolutions();
|
|
1663
|
+
|
1658
|
1664
|
}
|
1659
|
1665
|
};
|
1660
|
1666
|
</script>
|