Browse Source

修改处方bug

csx 5 years ago
parent
commit
df339b546f

+ 14 - 10
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -427,7 +427,9 @@
427 427
           this.dialysisPrescription.dialysis_duration_minute = timeArray[1]
428 428
         }
429 429
         this.timeValue = this.dialysisPrescription.dialysis_duration_hour + "小时" + this.dialysisPrescription.dialysis_duration_minute + "分钟"
430
-        this.dialysisPrescription.dialysis_duration = this.dialysisPrescription.dialysis_duration_hour + "." + this.dialysisPrescription.dialysis_duration_minute
430
+
431
+
432
+        this.dialysisPrescription.dialysis_duration = this.dialysisPrescription.dialysis_duration_hour + "." + (this.dialysisPrescription.dialysis_duration_minute)
431 433
 
432 434
       },
433 435
       inputFocus: function (event) {
@@ -718,9 +720,9 @@
718 720
           } else {
719 721
             Toast.success("提交成功");
720 722
             this.$emit("prescription", response.data.data.prescription);
721
-            for (const key in response.data.data.prescription) {
722
-              this.prescription_prop[key] = response.data.data.prescription[key];
723
-            }
723
+            // for (const key in response.data.data.prescription) {
724
+            //   // this.prescription_prop[key] = response.data.data.prescription[key];
725
+            // }
724 726
             this.finish();
725 727
 
726 728
           }
@@ -737,12 +739,14 @@
737 739
             return false;
738 740
           } else {
739 741
             Toast.success("提交成功");
740
-            for (const key in response.data.data.solution) {
741
-              this.solution_prop[key] = response.data.data.solution[key];
742
-            }
743
-            for (const key in response.data.data.prescription) {
744
-              this.prescription_prop[key] = response.data.data.prescription[key];
745
-            }
742
+            // for (const key in response.data.data.solution) {
743
+            //   this.solution_prop[key] = response.data.data.solution[key];
744
+            // }
745
+            // for (const key in response.data.data.prescription) {
746
+            //   this.prescription_prop[key] = response.data.data.prescription[key];
747
+            // }
748
+            // console.log(response.data.data.prescription)
749
+
746 750
             this.$emit("longSolution", response.data.data.solution);
747 751
             this.$emit("prescription", response.data.data.prescription);
748 752
             this.finish();

+ 9 - 2
src/pages/main/today/TodayTab.vue View File

@@ -105,7 +105,7 @@
105 105
     <van-popup title="透析处方" v-model="menuList[1].showPopup" :overlay="true" :close-on-click-overlay="false">
106 106
       <prescription-dialog :patient_prop="patient" :solution_prop="solution" :machines_prop="devices"
107 107
                            :prescription_prop="prescription" @finish="closePrescriptionDialog" :operators="operators"
108
-                           @close="closePrescriptionDialog" ref="prescription_dialog"></prescription-dialog>
108
+                           @close="closePrescriptionDialog" @prescription="prescriptionFunc" @longSolution="longSolutionFunc" ref="prescription_dialog"></prescription-dialog>
109 109
     </van-popup>
110 110
 
111 111
     <van-popup title="接诊评估" v-model="menuList[2].showPopup" :overlay="true" :close-on-click-overlay="false">
@@ -171,7 +171,7 @@
171 171
         <li @click="menuClick(9)">治疗小结</li>
172 172
       </ul>
173 173
     </div> -->
174
- 
174
+
175 175
    <el-button class="goTop" v-show="goTopShow" @click="goTop"  type="primary" icon="el-icon-arrow-up" circle style="position:fixed;right:50px;bottom:50px;"></el-button>
176 176
 
177 177
    </div>
@@ -884,7 +884,14 @@ export default {
884 884
         }
885 885
       );
886 886
     },
887
+    prescriptionFunc:function(val){
888
+        this.prescription = val
889
+
890
+    },
891
+    longSolutionFunc:function(val){
892
+      this.solution = val
887 893
 
894
+    },
888 895
     closePrescriptionDialog: function() {
889 896
       this.closeDialog(1);
890 897
       this.scrollToView("prescription");

+ 10 - 3
src/pages/main/today/dialysisPrescription.vue View File

@@ -38,7 +38,6 @@
38 38
         <li>
39 39
           <label>透析时长 : </label>
40 40
           <span class="content">{{dialysis_duration != '0'?dialysis_duration:""}}</span>
41
-          <span class="unit">{{dialysis_duration != '0'?"h":""}}</span>
42 41
         </li>
43 42
         <li>
44 43
           <label>透析液配方 : </label>
@@ -169,6 +168,7 @@ export default {
169 168
   computed: {
170 169
     target_ultrafiltration:function(){
171 170
       var v = this.getValueStr("target_ultrafiltration", "target_ultrafiltration")
171
+      console.log(v)
172 172
       return v.length == 0 ? "0" : v
173 173
     },
174 174
     dialysis_mode: function() {
@@ -216,8 +216,15 @@ export default {
216 216
       return v.length == 0 ? "0" : v
217 217
     },
218 218
     dialysis_duration: function() {
219
-      var v = this.getValueStr("dialysis_duration", "dialysis_duration")
220
-      return v.length == 0 ? "0" : v
219
+      var dialysis_duration_hour = (this.getValueStr("dialysis_duration_hour", "dialysis_duration_hour"))
220
+      var dialysis_duration_minute = (this.getValueStr("dialysis_duration_minute", "dialysis_duration_minute"))
221
+      if(dialysis_duration_hour.length == 0 && dialysis_duration_minute.length == 0){
222
+        return  "0"
223
+      }else{
224
+        var time = dialysis_duration_hour+"h"+dialysis_duration_minute+"min"
225
+        return time.length == 0 ? "0" : time
226
+      }
227
+
221 228
     },
222 229
     blood_flow_volume: function() {
223 230
       var v = this.getValueStr("blood_flow_volume", "blood_flow_volume")