|
@@ -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();
|