xiaoming_global il y a 5 ans
Parent
révision
58581060e1

+ 0 - 28
src/xt_pages/dialysis/details/assessmentBefore.vue Voir le fichier

@@ -188,32 +188,6 @@ export default {
188 188
       }
189 189
   },
190 190
   computed: {
191
-<<<<<<< .mine
192
-      weight_before: function() {
193
-        if (this.record.id == 0) {
194
-          return '-'
195
-        }
196
-        return this.record.weight_before
197
-      },
198
-      systolic_blood_pressure: function() {
199
-        if (this.record.id == 0) {
200
-          return '-'
201
-        }
202
-        return this.record.systolic_blood_pressure
203
-      },
204
-      last_post_dialysis: function() {
205
-        if (this.record.id == 0) {
206
-          return '-'
207
-        }
208
-        return this.record.last_post_dialysis
209
-      },
210
-
211
-
212
-
213
-
214
-
215
-
216
-=======
217 191
     weight_before: function() {
218 192
       if (this.record.id == 0) {
219 193
         return '-'
@@ -238,8 +212,6 @@ export default {
238 212
       }
239 213
       return this.record.last_post_dialysis
240 214
     },
241
->>>>>>> .theirs
242
-
243 215
       dry_weight: function() {
244 216
         if (this.record.id == 0) {
245 217
           return '-'

+ 4 - 14
src/xt_pages/dialysis/details/dialog/computer_dialog.vue Voir le fichier

@@ -60,8 +60,8 @@
60 60
           bed_id: '',
61 61
           nurse_id: '',
62 62
           start_time: '',
63
-          puncture_nurse_id: ''
64
-          lood_drawing:100
63
+          puncture_nurse_id: '',
64
+          lood_drawing: 100
65 65
         }
66 66
       }
67 67
     },
@@ -80,20 +80,14 @@
80 80
       }
81 81
     },
82 82
     created() {
83
-<<<<<<< .mine
84
-
85
-
86
-=======
87
-      
88 83
       this.template_id = this.$store.getters.xt_user.template_info.template_id
89
->>>>>>> .theirs
90 84
       this.patient_id = this.$route.query.patient_id
91 85
       this.schedule_date = this.$route.query.date
92 86
 
93 87
       this.form.bed_id = this.dialysis_order.id == 0 ? this.schedule.bed_id : this.dialysis_order.bed_id
94 88
       this.form.nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.start_nurse
95 89
       this.form.puncture_nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.puncture_nurse
96
-      this.form.lood_drawing = 0 
90
+      this.form.lood_drawing = 0
97 91
 
98 92
       if (this.form.puncture_nurse_id == 0) {
99 93
         this.form.puncture_nurse_id = this.$store.getters.xt_user.user.id
@@ -171,11 +165,7 @@
171 165
       },
172 166
       submit: function() {
173 167
         this.loading = true
174
-<<<<<<< .mine
175
-        startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id, this.form.puncture_nurse_id, this.form.start_time).then(rs => {
176
-=======
177
-        startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id,this.form.lood_drawing, this.form.puncture_nurse_id,this.form.start_time).then(rs => {
178
->>>>>>> .theirs
168
+        startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id, this.form.lood_drawing, this.form.puncture_nurse_id, this.form.start_time).then(rs => {
179 169
           this.loading = false
180 170
           var resp = rs.data
181 171
           if (resp.state == 1) {