Browse Source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 year ago
parent
commit
5d02cd3cdc
2 changed files with 63 additions and 2 deletions
  1. 60 0
      src/store/modules/globalConfig.js
  2. 3 2
      src/xt_pages/sign/index.vue

+ 60 - 0
src/store/modules/globalConfig.js View File

@@ -712,6 +712,66 @@ const global_config = {
712 712
         sodium: 1,
713 713
         calcium: 1,
714 714
         bicarbonate: 1
715
+      },
716
+      34: {
717
+        id: 34,
718
+        name: 'HDF100',
719
+        dialysis_duration: 1,
720
+        replacement_way: 1,
721
+        hemodialysis_machine: 2,
722
+        blood_filter: 1,
723
+        perfusion_apparatus: 2,
724
+        blood_flow_volume: 1,
725
+        dialysate_flow: 1,
726
+        kalium: 1,
727
+        sodium: 1,
728
+        calcium: 1,
729
+        bicarbonate: 1
730
+      },
731
+      35: {
732
+        id: 35,
733
+        name: 'HDF600',
734
+        dialysis_duration: 1,
735
+        replacement_way: 1,
736
+        hemodialysis_machine: 2,
737
+        blood_filter: 1,
738
+        perfusion_apparatus: 2,
739
+        blood_flow_volume: 1,
740
+        dialysate_flow: 1,
741
+        kalium: 1,
742
+        sodium: 1,
743
+        calcium: 1,
744
+        bicarbonate: 1
745
+      },
746
+      36: {
747
+        id: 36,
748
+        name: 'HDF800',
749
+        dialysis_duration: 1,
750
+        replacement_way: 1,
751
+        hemodialysis_machine: 2,
752
+        blood_filter: 1,
753
+        perfusion_apparatus: 2,
754
+        blood_flow_volume: 1,
755
+        dialysate_flow: 1,
756
+        kalium: 1,
757
+        sodium: 1,
758
+        calcium: 1,
759
+        bicarbonate: 1
760
+      },
761
+      37: {
762
+        id: 37,
763
+        name: 'HDF1000',
764
+        dialysis_duration: 1,
765
+        replacement_way: 1,
766
+        hemodialysis_machine: 2,
767
+        blood_filter: 1,
768
+        perfusion_apparatus: 2,
769
+        blood_flow_volume: 1,
770
+        dialysate_flow: 1,
771
+        kalium: 1,
772
+        sodium: 1,
773
+        calcium: 1,
774
+        bicarbonate: 1
715 775
       }
716 776
     },
717 777
     anticoagulants_confit: { // 抗凝剂

+ 3 - 2
src/xt_pages/sign/index.vue View File

@@ -287,9 +287,10 @@ export default {
287 287
         if (response.data.data.patientlist != null) {
288 288
           var patientlist = response.data.data.patientlist
289 289
           this.weigh_list.id = patientlist.id
290
-          this.weigh_list.dry_weight = patientlist.dry_weight?response.data.data.dryWeight.dry_weight:0
290
+          var dryWeight =  response.data.data.dryWeight
291
+          this.weigh_list.dry_weight = patientlist.dry_weight
291 292
           if (this.weigh_list.dry_weight === 0) {
292
-            this.weigh_list.dry_weight = ''
293
+            this.weigh_list.dry_weight = dryWeight.dry_weight
293 294
           }
294 295
           this.weigh_list.weight_before = patientlist.weight_before
295 296
           if (this.weigh_list.weight_before === 0) {