Browse Source

统计配置开发

XMLWAN 4 years ago
parent
commit
d02577d47e
2 changed files with 11 additions and 4 deletions
  1. 1 0
      src/xt_pages/data/prescription.vue
  2. 10 4
      src/xt_pages/user/dialysisSolution.vue

+ 1 - 0
src/xt_pages/data/prescription.vue View File

@@ -1019,6 +1019,7 @@ export default {
1019 1019
     this.addPlan.mode = 1;
1020 1020
     this.getAllSystemPrescription();
1021 1021
     this.getSystemPrescription(this.addPlan.mode);
1022
+    console.log("抗凝剂",this.addPlan.anticoagulan)
1022 1023
   },
1023 1024
   watch: {
1024 1025
     "addPlan.dialysis_duration": function() {

+ 10 - 4
src/xt_pages/user/dialysisSolution.vue View File

@@ -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>