|
@@ -1,6 +1,7 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div>
|
3
|
|
- <div class="Dialog" v-show="listPanel" >
|
|
3
|
+ <div v-loading="loading">
|
|
4
|
+ <div class="Dialog" v-show="listPanel" >
|
4
|
5
|
<div class="DialogTit">
|
5
|
6
|
<span class="iconfont" @click="close()"></span>
|
6
|
7
|
<h1 class="name">透析监测</h1>
|
|
@@ -60,6 +61,7 @@
|
60
|
61
|
<h1 class="name">{{formTitle}}</h1>
|
61
|
62
|
<span class="success" v-if="form.id>0" @click="submitEditAction()">完成</span>
|
62
|
63
|
<span class="success" v-else @click="submitAction()">完成</span>
|
|
64
|
+
|
63
|
65
|
</div>
|
64
|
66
|
<div class="DialogContent choose">
|
65
|
67
|
<div class="content">
|
|
@@ -154,8 +156,10 @@
|
154
|
156
|
</div>
|
155
|
157
|
</div>
|
156
|
158
|
</div>
|
|
159
|
+ </div>
|
|
160
|
+
|
157
|
161
|
|
158
|
|
- <mt-datetime-picker
|
|
162
|
+ <mt-datetime-picker
|
159
|
163
|
ref="picker"
|
160
|
164
|
type="datetime"
|
161
|
165
|
@confirm="handleConfirm"
|
|
@@ -201,6 +205,7 @@ export default {
|
201
|
205
|
},
|
202
|
206
|
data() {
|
203
|
207
|
return {
|
|
208
|
+ loading:false,
|
204
|
209
|
formTitle: "新增监测",
|
205
|
210
|
formPanel: false,
|
206
|
211
|
listPanel: true,
|
|
@@ -670,6 +675,7 @@ export default {
|
670
|
675
|
// }
|
671
|
676
|
},
|
672
|
677
|
submitEditAction: function() {
|
|
678
|
+ this.loading = true
|
673
|
679
|
Toast.loading({ forbidClick: true, duration: 0 });
|
674
|
680
|
var params = {};
|
675
|
681
|
params.patient_id = this.patient.id;
|
|
@@ -700,6 +706,8 @@ export default {
|
700
|
706
|
editMonitorRecord(params).then(rs => {
|
701
|
707
|
var resp = rs.data;
|
702
|
708
|
if (resp.state == 1) {
|
|
709
|
+ this.loading = false
|
|
710
|
+
|
703
|
711
|
var monitor = resp.data.monitor;
|
704
|
712
|
this.$emit("did_edit_monitor", monitor);
|
705
|
713
|
|
|
@@ -729,11 +737,13 @@ export default {
|
729
|
737
|
this.formPanel = false;
|
730
|
738
|
this.listPanel = true;
|
731
|
739
|
} else {
|
|
740
|
+ this.loading = false
|
732
|
741
|
Toast.fail(resp.msg);
|
733
|
742
|
}
|
734
|
743
|
});
|
735
|
744
|
},
|
736
|
745
|
submitAction: function() {
|
|
746
|
+ this.loading = true
|
737
|
747
|
Toast.loading({ forbidClick: true, duration: 0 });
|
738
|
748
|
var params = {};
|
739
|
749
|
params.patient_id = this.patient.id;
|
|
@@ -763,6 +773,8 @@ export default {
|
763
|
773
|
.then(rs => {
|
764
|
774
|
var resp = rs.data;
|
765
|
775
|
if (resp.state == 1) {
|
|
776
|
+ this.loading = false
|
|
777
|
+
|
766
|
778
|
var monitor = resp.data.monitor;
|
767
|
779
|
this.$emit("did_add_monitor", monitor);
|
768
|
780
|
|
|
@@ -798,10 +810,12 @@ export default {
|
798
|
810
|
this.formPanel = false;
|
799
|
811
|
this.listPanel = true;
|
800
|
812
|
} else {
|
|
813
|
+ this.loading = false
|
801
|
814
|
Toast.fail(resp.msg);
|
802
|
815
|
}
|
803
|
816
|
})
|
804
|
817
|
.catch(err => {
|
|
818
|
+ this.loading = false
|
805
|
819
|
Toast.fail(err);
|
806
|
820
|
});
|
807
|
821
|
},
|