瀏覽代碼

统计配置开发

XMLWAN 5 年之前
父節點
當前提交
d02577d47e
共有 2 個文件被更改,包括 11 次插入4 次删除
  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 查看文件

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

+ 10 - 4
src/xt_pages/user/dialysisSolution.vue 查看文件

1248
       this.fetchPatientDialysisSolutions();
1248
       this.fetchPatientDialysisSolutions();
1249
     },
1249
     },
1250
     openEdit(index, row) {
1250
     openEdit(index, row) {
1251
-      console.log(row);
1251
+     
1252
       this.current_index = index;
1252
       this.current_index = index;
1253
-
1253
+     
1254
       this.addPlan.id = row.id;
1254
       this.addPlan.id = row.id;
1255
       this.addPlan.mode = row.mode_id;
1255
       this.addPlan.mode = row.mode_id;
1256
       this.addPlan.mode_name = row.mode_name;
1256
       this.addPlan.mode_name = row.mode_name;
1262
       this.addPlan.hemodialysis_machine = row.hemodialysis_machine + "";
1262
       this.addPlan.hemodialysis_machine = row.hemodialysis_machine + "";
1263
       this.addPlan.perfusion_apparatus = row.perfusion_apparatus + "";
1263
       this.addPlan.perfusion_apparatus = row.perfusion_apparatus + "";
1264
       this.addPlan.blood_flow_volume = row.blood_flow_volume.toString();
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
       this.addPlan.replacement_total = row.replacement_total;
1271
       this.addPlan.replacement_total = row.replacement_total;
1267
 
1272
 
1268
       this.addPlan.target_ktv = row.target_ktv.toString();
1273
       this.addPlan.target_ktv = row.target_ktv.toString();
1292
       this.addPlan.displace_liqui_value = row.displace_liqui_value.toString();
1297
       this.addPlan.displace_liqui_value = row.displace_liqui_value.toString();
1293
       this.addPlan.ultrafiltration = row.ultrafiltration.toString();
1298
       this.addPlan.ultrafiltration = row.ultrafiltration.toString();
1294
       this.addPlan.blood_access = row.blood_access;
1299
       this.addPlan.blood_access = row.blood_access;
1295
-
1300
+     
1296
       this.addPlan.registrars_id = row.registrars_id;
1301
       this.addPlan.registrars_id = row.registrars_id;
1297
 
1302
 
1298
       this.dialogVisible = true;
1303
       this.dialogVisible = true;
1655
     // this.fetchAllDoctorAndNurse();
1660
     // this.fetchAllDoctorAndNurse();
1656
     this.fetchAllAdminUsers();
1661
     this.fetchAllAdminUsers();
1657
     this.fetchPatientDialysisSolutions();
1662
     this.fetchPatientDialysisSolutions();
1663
+   
1658
   }
1664
   }
1659
 };
1665
 };
1660
 </script>
1666
 </script>