Browse Source

修改中能建问题

张保健 5 years ago
parent
commit
6f156da79f

+ 1 - 1
src/pages/home/login.vue View File

@@ -45,7 +45,7 @@ export default {
45 45
   computed: {
46 46
     loginDisable() {
47 47
       // return false
48
-      return this.form.mobile.length == 0 || /^1[234578]\d{9}$/.test(this.form.mobile) == false || this.form.pwd.length == 0
48
+      return this.form.mobile.length == 0 || /^1[2345789]\d{9}$/.test(this.form.mobile) == false || this.form.pwd.length == 0
49 49
     }
50 50
   },
51 51
   created() {

+ 0 - 1
src/pages/main/DetailsPage.vue View File

@@ -125,7 +125,6 @@ export default {
125 125
     },
126 126
     toMyPatients () {
127 127
       var patient_id = this.$route.query.patient_id
128
-      console.log('patientid是谁呢', patient_id)
129 128
       this.$router.push('/mypatients/' + patient_id)
130 129
     }
131 130
   }

+ 49 - 2
src/pages/main/DialysisArea.vue View File

@@ -265,7 +265,54 @@ export default {
265 265
 
266 266
   created () {
267 267
     this.user_id = this.$store.getters.user.user.id
268
-    this.requestDialysisScheduals()
268
+    
269
+    var storedata = this.$store.getters.scheduals
270
+    var scheduals = storedata.scheduals
271
+    if (Object.keys(storedata).length > 0) {
272
+      var zoneMap = {}
273
+      var schedualMap = {}
274
+      for (let index = 0; index < scheduals.length; index++) {
275
+        const schedual = scheduals[index]
276
+        if (schedual.dialysis_order == null) {
277
+          continue
278
+        }
279
+        if (schedualMap[schedual.device_number.zone.name] == null) {
280
+          schedualMap[schedual.device_number.zone.name] = []
281
+        }
282
+        schedualMap[schedual.device_number.zone.name].push(schedual)
283
+        if (zoneMap[schedual.device_number.zone.name] == null) {
284
+          zoneMap[schedual.device_number.zone.name] =
285
+            schedual.device_number.zone
286
+        }
287
+      }
288
+
289
+      var zones = []
290
+      zones.push({ value: 0, text: '全部分区' })
291
+      for (var zoneName in zoneMap) {
292
+        zones.push({ value: zoneMap[zoneName].id, text: zoneName })
293
+      }
294
+
295
+      zones = zones.sort(function (a, b) {
296
+        return a.value > b.value
297
+      })
298
+      this.zones = zones
299
+
300
+      var dialysis_scheduals = []
301
+      for (let index = 0; index < zones.length; index++) {
302
+        const zone = zones[index]
303
+        var scheduals = schedualMap[zone.text]
304
+        if (scheduals == null) {
305
+          continue
306
+        }
307
+        dialysis_scheduals.push({
308
+          zone_name: zone.text,
309
+          scheduals: scheduals
310
+        })
311
+      }
312
+      this.dialysis_scheduals = dialysis_scheduals
313
+    } else {
314
+      this.requestDialysisScheduals()
315
+    }
269 316
   },
270 317
   mounted () {
271 318
     this.timer = window.setInterval(() => {
@@ -334,7 +381,7 @@ export default {
334 381
 
335 382
             // console.log(resp.data)
336 383
             var scheduals = resp.data.scheduals
337
-            console.log('scheduals是什么', scheduals)
384
+            this.$store.dispatch("SetScheduals",{scheduals:scheduals})
338 385
             var zoneMap = {}
339 386
             var schedualMap = {}
340 387
             for (let index = 0; index < scheduals.length; index++) {

+ 57 - 34
src/pages/main/WaitingArea.vue View File

@@ -186,23 +186,19 @@ export default {
186 186
         //   }
187 187
         // }
188 188
         var zone_name = this.zone_options[this.zone_selected].text
189
-        console.log(zone_name)
190 189
         var schedules = [];
190
+        var filtedSchedules = [];
191 191
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
192 192
           const scheduleInfo = this.zone_scheduals[o_i];
193 193
           var originSchedules = scheduleInfo.scheduals;
194
-          var filtedSchedules = [];
194
+          
195 195
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
196 196
             const schedule = originSchedules[s_i];
197 197
             if(this.zone_selected == 0){
198 198
               if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
199 199
                 filtedSchedules.push(schedule);
200 200
               }
201
-
202 201
             }else{
203
-              console.log(zone_name)
204
-              console.log(schedule.device_number.zone.name)
205
-
206 202
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
207 203
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
208 204
                   filtedSchedules.push(schedule);
@@ -210,24 +206,25 @@ export default {
210 206
               }
211 207
             }
212 208
           }
213
-          if (filtedSchedules.length > 0) {
214
-            schedules.push({
215
-              zone_name: scheduleInfo.zone_name,
216
-              scheduals: filtedSchedules
217
-            });
218
-          }
209
+          // if (filtedSchedules.length > 0) {
210
+          //   schedules.push({
211
+          //     zone_name: scheduleInfo.zone_name,
212
+          //     scheduals: filtedSchedules
213
+          //   });
214
+          // }
219 215
         }
220
-        return schedules
216
+        console.log(filtedSchedules)
217
+        return this.processScheduals(filtedSchedules);
221 218
       }
222 219
 
223 220
       if (this.time_selected != 0) {
224 221
         var zone_name = this.zone_options[this.zone_selected].text
225
-        console.log(zone_name)
226 222
         var schedules = [];
223
+        var filtedSchedules = [];
227 224
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
228 225
           const scheduleInfo = this.zone_scheduals[o_i];
229 226
           var originSchedules = scheduleInfo.scheduals;
230
-          var filtedSchedules = [];
227
+          
231 228
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
232 229
             const schedule = originSchedules[s_i];
233 230
             if(this.zone_selected == 0){
@@ -236,9 +233,6 @@ export default {
236 233
               }
237 234
 
238 235
             }else{
239
-              console.log(zone_name)
240
-              console.log(schedule.device_number.zone.name)
241
-
242 236
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
243 237
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
244 238
                   filtedSchedules.push(schedule);
@@ -246,14 +240,15 @@ export default {
246 240
               }
247 241
             }
248 242
           }
249
-          if (filtedSchedules.length > 0) {
250
-            schedules.push({
251
-              zone_name: scheduleInfo.zone_name,
252
-              scheduals: filtedSchedules
253
-            });
254
-          }
243
+          // if (filtedSchedules.length > 0) {
244
+          //   schedules.push({
245
+          //     zone_name: scheduleInfo.zone_name,
246
+          //     scheduals: filtedSchedules
247
+          //   });
248
+          // }
255 249
         }
256
-        return schedules
250
+        console.log(filtedSchedules)
251
+        return this.processScheduals(filtedSchedules);
257 252
       }
258 253
 
259 254
       var zone_selected = this.zone_selected;
@@ -263,10 +258,11 @@ export default {
263 258
       if (zone_selected != 0 || timetype_selected != 0) {
264 259
         var zone_name = zone_selected == 0 ? "" : this.zone_options[zone_selected].text;
265 260
         var schedules = [];
261
+        var filtedSchedules = [];
266 262
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
267 263
           const scheduleInfo = this.zone_scheduals[o_i];
268 264
           var originSchedules = scheduleInfo.scheduals;
269
-          var filtedSchedules = [];
265
+          
270 266
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
271 267
             const schedule = originSchedules[s_i];
272 268
             if ( zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
@@ -275,15 +271,17 @@ export default {
275 271
               }
276 272
             }
277 273
           }
278
-          if (filtedSchedules.length > 0) {
279
-            schedules.push({
280
-              zone_name: scheduleInfo.zone_name,
281
-              scheduals: filtedSchedules
282
-            });
283
-          }
274
+          // if (filtedSchedules.length > 0) {
275
+          //   schedules.push({
276
+          //     zone_name: scheduleInfo.zone_name,
277
+          //     scheduals: filtedSchedules
278
+          //   });
279
+          // }
284 280
         }
285 281
 
286
-        return schedules;
282
+        console.log(filtedSchedules)
283
+        return this.processScheduals(filtedSchedules);
284
+
287 285
         if (this.select_index == 2) {
288 286
           var scheduals = [];
289 287
           for (let index = 0; index < this.scheduals.length; index++) {
@@ -389,7 +387,31 @@ export default {
389 387
     if (type != null) {
390 388
       this.select_index = parseInt(type);
391 389
     }
392
-    this.requestScheduals();
390
+   
391
+    var storedata = this.$store.getters.waitscheduals
392
+    var scheduals = storedata.waitscheduals
393
+    if (Object.keys(storedata).length > 0) {
394
+      var totalCount = scheduals.length;
395
+      var prescription_count = 0;
396
+      var assessment_before_dislysis_count = 0;
397
+      for (let index = 0; index < scheduals.length; index++) {
398
+        const schedual = scheduals[index];
399
+        if (schedual.assessment_before_dislysis == null) {
400
+          assessment_before_dislysis_count += 1;
401
+        }
402
+        if (schedual.prescription == null) {
403
+          prescription_count += 1;
404
+        }
405
+      }
406
+      this.menuList[2].count = assessment_before_dislysis_count;
407
+      this.menuList[1].count = prescription_count;
408
+      this.scheduals = scheduals;
409
+
410
+      this.zone_options = this.makeZones(scheduals);
411
+      this.zone_scheduals = this.processScheduals(scheduals);
412
+    } else {
413
+      this.requestScheduals();
414
+    }
393 415
   },
394 416
   mounted() {
395 417
     this.timer = window.setInterval(() => {
@@ -507,6 +529,7 @@ export default {
507 529
             this.loading = false;
508 530
 
509 531
             var scheduals = resp.data.scheduals;
532
+            this.$store.dispatch("SetWaitScheduals",{waitscheduals:scheduals})
510 533
             var totalCount = scheduals.length;
511 534
             var prescription_count = 0;
512 535
             var assessment_before_dislysis_count = 0;

+ 8 - 6
src/pages/main/dialog/OrdersDialog.vue View File

@@ -20,7 +20,7 @@
20 20
           @click="modifyExecAdvice"
21 21
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
22 22
         >修改执行医嘱</span>
23
-        <span
23
+        <span v-if="template_id != 6"
24 24
           @click="checkAdvice"
25 25
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
26 26
         >医嘱核对</span>
@@ -47,7 +47,7 @@
47 47
               <th width="40%">医嘱内容</th>
48 48
               <th width="10%">执行时间</th>
49 49
               <th width="10%">执行护士</th>
50
-              <th width="10%">核对人员</th>
50
+              <th v-if="template_id != 6" width="10%">核对人员</th>
51 51
             </tr>
52 52
             <template v-for="(group, group_index) in advice_groups">
53 53
               <tr
@@ -230,6 +230,7 @@
230 230
     data () {
231 231
       return {
232 232
         isShowDialog: true,
233
+        template_id: 0,
233 234
         isShowExce: true,
234 235
         isShowMofifyExce: false,
235 236
         title: '临时医嘱',
@@ -261,6 +262,7 @@
261 262
       }
262 263
     },
263 264
     created () {
265
+      this.template_id = this.$store.getters.user.template_info.template_id
264 266
       var date = this.$route.query && this.$route.query.date
265 267
       date *= 1000
266 268
       var newDate = new Date(date)
@@ -327,13 +329,13 @@
327 329
 
328 330
     methods: {
329 331
       modifyExecAdvice: function () {
330
-        if(!this.isPremission){
331
-          Toast.fail('你没有权限修改医嘱!')
332
-        }else{
332
+        // if(!this.isPremission){
333
+        //   Toast.fail('你没有权限修改医嘱!')
334
+        // }else{
333 335
           this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000)
334 336
           this.$refs.mofify_exec_time.open()
335 337
 
336
-        }
338
+        // }
337 339
 
338 340
       },
339 341
       didCreateAdvices: function (advices) {

+ 20 - 22
src/pages/main/dialog/ThorougDialog.vue View File

@@ -1258,33 +1258,31 @@
1258 1258
       let tempMinute = ''
1259 1259
       this.template_id = this.$store.getters.user.template_info.template_id
1260 1260
 
1261
-      if (this.record != null && this.record.id != '' && this.record.assessment_doctor != 0) {
1262
-        console.log("111111111")
1261
+      if (this.record != null && this.record.id != '' ) {
1263 1262
         for (const key in this.formValue) {
1264 1263
           // console.log(key, this.record[key]);
1265 1264
           this.formValue[key] = this.record[key];
1266 1265
         }
1267
-      }else  {
1268
-        console.log("2222222")
1269
-
1270
-        if (this.record != null && this.record.id != '' && this.record.assessment_doctor == 0){
1271
-          this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1272
-          this.$set(this.formValue, "weight_after", this.record.weight_after)
1273
-          this.$set(this.formValue, "weight_loss", this.record.weight_loss)
1274
-          this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1275
-          this.$set(this.formValue, "actual_displacement", this.record.actual_displacement)
1276
-          this.$set(this.formValue, "actual_treatment_hour", this.record.actual_treatment_hour)
1277
-          this.$set(this.formValue, "actual_treatment_minute", this.record.actual_treatment_minute)
1278
-        } else {
1279
-          this.$set(this.formValue, "actual_ultrafiltration", '')
1280
-          this.$set(this.formValue, "weight_after", '')
1281
-          this.$set(this.formValue, "weight_loss", '')
1282
-          this.$set(this.formValue, "actual_ultrafiltration", '')
1283
-          this.$set(this.formValue, "actual_displacement", '')
1284
-          this.$set(this.formValue, "actual_treatment_hour", '')
1285
-          this.$set(this.formValue, "actual_treatment_minute", '')
1286
-        }
1287 1266
       }
1267
+      // else  {
1268
+        // if (this.record != null && this.record.id != '' && this.record.assessment_doctor == 0){
1269
+        //   this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1270
+        //   this.$set(this.formValue, "weight_after", this.record.weight_after)
1271
+        //   this.$set(this.formValue, "weight_loss", this.record.weight_loss)
1272
+        //   this.$set(this.formValue, "actual_ultrafiltration", this.record.actual_ultrafiltration)
1273
+        //   this.$set(this.formValue, "actual_displacement", this.record.actual_displacement)
1274
+        //   this.$set(this.formValue, "actual_treatment_hour", this.record.actual_treatment_hour)
1275
+        //   this.$set(this.formValue, "actual_treatment_minute", this.record.actual_treatment_minute)
1276
+        // } else {
1277
+          // this.$set(this.formValue, "actual_ultrafiltration", '')
1278
+          // this.$set(this.formValue, "weight_after", '')
1279
+          // this.$set(this.formValue, "weight_loss", '')
1280
+          // this.$set(this.formValue, "actual_ultrafiltration", '')
1281
+          // this.$set(this.formValue, "actual_displacement", '')
1282
+          // this.$set(this.formValue, "actual_treatment_hour", '')
1283
+          // this.$set(this.formValue, "actual_treatment_minute", '')
1284
+        // }
1285
+      // }
1288 1286
 
1289 1287
 
1290 1288
 

+ 91 - 43
src/pages/main/index.vue View File

@@ -41,56 +41,44 @@
41 41
     methods: {
42 42
 
43 43
       requestScheduals () {
44
-        var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
45
-        getWaitingScheduals({date: date}).then(rs => {
46
-          var resp = rs.data
47
-          // console.log(resp);
48
-          if (resp.state == 1) {
49
-            var scheduals = resp.data.scheduals
50
-            this.scheduals = scheduals
51
-            console.log(this.scheduals)
52
-            let doctorAdvice = []
53
-            for (let i = 0; i < this.scheduals.length; i++) {
54
-              for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
55
-                if(this.scheduals[i].dialysis_order == null ){
56
-                  if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
57
-                    doctorAdvice.push(this.scheduals[i].doctor_advice[y])
44
+        var storedata = this.$store.getters.waitscheduals
45
+        var scheduals = storedata.waitscheduals
46
+        if (Object.keys(storedata).length > 0){
47
+              this.scheduals = scheduals
48
+              console.log(this.scheduals)
49
+              let doctorAdvice = []
50
+              for (let i = 0; i < this.scheduals.length; i++) {
51
+                for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
52
+                  if(this.scheduals[i].dialysis_order == null ){
53
+                    if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
54
+                      doctorAdvice.push(this.scheduals[i].doctor_advice[y])
55
+                    }
58 56
                   }
59 57
                 }
60 58
               }
61
-            }
62
-
63
-            const sorted = this.groupBy(doctorAdvice, function (item) {
64
-              return [item.groupno]
65
-            })
66
-
67 59
 
68
-            this.unReadWaitNum = sorted.length
60
+              const sorted = this.groupBy(doctorAdvice, function (item) {
61
+                return [item.groupno]
62
+              })
63
+              this.unReadWaitNum = sorted.length
69 64
 
70
-          } else {
71
-            this.$toast({
72
-              message: resp.msg
73
-            })
74
-          }
75
-        })
76
-      },
77
-      requestDialysisScheduals () {
78
-        var date = this.$store.getters.app.dialysis_area.schedule_date
79
-        var type = 0
80
-        getDialysisScheduals({type: type, date: parseTime(date, '{y}-{m}-{d}')})
81
-          .then(rs => {
65
+        } else {
66
+          var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
67
+          getWaitingScheduals({date: date}).then(rs => {
82 68
             var resp = rs.data
69
+             this.$store.dispatch("SetRequestScheduals",{resp})
70
+            // console.log(resp);
83 71
             if (resp.state == 1) {
84 72
               var scheduals = resp.data.scheduals
73
+              this.scheduals = scheduals
74
+              console.log(this.scheduals)
85 75
               let doctorAdvice = []
86
-              for (let index = 0; index < scheduals.length; index++) {
87
-                const schedual = scheduals[index]
88
-                if (schedual.dialysis_order == null) {
89
-                  continue
90
-                }
91
-                for (let y = 0; y < schedual.doctor_advice.length; y++) {
92
-                  if (schedual.doctor_advice[y].execution_state == 2) {
93
-                    doctorAdvice.push(schedual.doctor_advice[y])
76
+              for (let i = 0; i < this.scheduals.length; i++) {
77
+                for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
78
+                  if(this.scheduals[i].dialysis_order == null ){
79
+                    if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
80
+                      doctorAdvice.push(this.scheduals[i].doctor_advice[y])
81
+                    }
94 82
                   }
95 83
                 }
96 84
               }
@@ -99,7 +87,8 @@
99 87
                 return [item.groupno]
100 88
               })
101 89
 
102
-              this.unReadDialysisNum = sorted.length
90
+
91
+              this.unReadWaitNum = sorted.length
103 92
 
104 93
             } else {
105 94
               this.$toast({
@@ -107,8 +96,67 @@
107 96
               })
108 97
             }
109 98
           })
110
-          .catch(v => {
99
+        }
100
+      },
101
+      requestDialysisScheduals () {
102
+        var storedata = this.$store.getters.scheduals
103
+        var scheduals = storedata.scheduals
104
+        if (Object.keys(storedata).length > 0){
105
+          let doctorAdvice = []
106
+          for (let index = 0; index < scheduals.length; index++) {
107
+            const schedual = scheduals[index]
108
+            if (schedual.dialysis_order == null) {
109
+              continue
110
+            }
111
+            for (let y = 0; y < schedual.doctor_advice.length; y++) {
112
+              if (schedual.doctor_advice[y].execution_state == 2) {
113
+                doctorAdvice.push(schedual.doctor_advice[y])
114
+              }
115
+            }
116
+          }
117
+
118
+          const sorted = this.groupBy(doctorAdvice, function (item) {
119
+            return [item.groupno]
111 120
           })
121
+
122
+          this.unReadDialysisNum = sorted.length
123
+        }else {
124
+          var date = this.$store.getters.app.dialysis_area.schedule_date
125
+          var type = 0
126
+          getDialysisScheduals({type: type, date: parseTime(date, '{y}-{m}-{d}')})
127
+            .then(rs => {
128
+              var resp = rs.data
129
+              this.$store.dispatch("SetRequestDialysisScheduals",{resp})
130
+              if (resp.state == 1) {
131
+                var scheduals = resp.data.scheduals
132
+                let doctorAdvice = []
133
+                for (let index = 0; index < scheduals.length; index++) {
134
+                  const schedual = scheduals[index]
135
+                  if (schedual.dialysis_order == null) {
136
+                    continue
137
+                  }
138
+                  for (let y = 0; y < schedual.doctor_advice.length; y++) {
139
+                    if (schedual.doctor_advice[y].execution_state == 2) {
140
+                      doctorAdvice.push(schedual.doctor_advice[y])
141
+                    }
142
+                  }
143
+                }
144
+
145
+                const sorted = this.groupBy(doctorAdvice, function (item) {
146
+                  return [item.groupno]
147
+                })
148
+
149
+                this.unReadDialysisNum = sorted.length
150
+
151
+              } else {
152
+                this.$toast({
153
+                  message: resp.msg
154
+                })
155
+              }
156
+            })
157
+            .catch(v => {
158
+            })
159
+          }
112 160
       }, groupBy (array, f) {
113 161
         const groups = {}
114 162
         array.forEach(function (o) {

+ 13 - 1
src/pages/main/template/DialysisPrintOrderSix.vue View File

@@ -133,7 +133,7 @@
133 133
                 <div class="inline_block" style="margin-left:10px;">
134 134
                   血管通路:
135 135
                   <div class="under_line" style="width: 200px;text-align: center;">
136
-                    {{predialysis.blood_access_part_id?blood_access_part[predialysis.blood_access_part_id]['name']:''}} {{predialysis.blood_access_part_opera_name}}
136
+                    {{QueryPartById(predialysis.blood_access_part_id)}} {{predialysis.blood_access_part_opera_name}}
137 137
                   </div>
138 138
                 </div>
139 139
               </div>
@@ -748,6 +748,18 @@
748 748
       }
749 749
     },
750 750
     methods: {
751
+      QueryPartById: function (val) {
752
+        let vascular_access_part_name = '/'
753
+        let vascular_access = getDataConfig('hemodialysis', 'vascular_access')
754
+
755
+        for (let i = 0; i < vascular_access.length; i++) {
756
+          if (vascular_access[i].id == val) {
757
+            vascular_access_part_name = vascular_access[i].name
758
+          }
759
+        }
760
+        return vascular_access_part_name
761
+
762
+      },
751 763
       getAdminUser(id) {
752 764
         if (id == 0) {
753 765
           return ''

+ 39 - 1
src/pages/main/today/TodayTab.vue View File

@@ -389,6 +389,7 @@
389 389
       this.date = date
390 390
       this.requestDialysisRecord()
391 391
       this.requestLongAdvice()
392
+      this.goTop()
392 393
 
393 394
     },
394 395
     mounted () {
@@ -763,6 +764,14 @@
763 764
           console.log(resp)
764 765
 
765 766
           if (resp.state == 1) {
767
+            
768
+            var waitstoredata = this.$store.getters.waitscheduals
769
+            var waitscheduals = waitstoredata.waitscheduals
770
+            var storedata = this.$store.getters.scheduals
771
+            var scheduals = storedata.scheduals
772
+
773
+
774
+
766 775
             var patient = resp.data.patient // 患者信息
767 776
             var schedual = resp.data.schedual // 患者排班信息
768 777
             var prescription = resp.data.prescription // 透析处方
@@ -804,6 +813,33 @@
804 813
               resp.data.last_assessment_after_dislysis // 上一次透前评估
805 814
             var last_monitor_record = resp.data.last_monitor_record
806 815
 
816
+            
817
+            if (Object.keys(waitstoredata).length > 0) {
818
+              for (let index = 0; index < waitscheduals.length; index++) {
819
+                if(waitscheduals[index].patient_id == patient.id) {
820
+                  waitscheduals[index].patient = patient
821
+                  waitscheduals[index].assessment_before_dislysis = predialysis_evaluation
822
+                  waitscheduals[index].prescription = prescription
823
+                  waitscheduals[index].doctor_advice = doctor_advices
824
+                  waitscheduals[index].dialysis_order = dialysis_order
825
+                }
826
+              }
827
+              this.$store.dispatch("SetWaitScheduals",{waitscheduals:waitscheduals})
828
+            }
829
+
830
+            if (Object.keys(storedata).length > 0) {
831
+              for (let index = 0; index < scheduals.length; index++) {
832
+                if(scheduals[index].patient_id == patient.id) {
833
+                  scheduals[index].patient = patient
834
+                  scheduals[index].assessment_before_dislysis = predialysis_evaluation
835
+                  scheduals[index].prescription = prescription
836
+                  scheduals[index].doctor_advice = doctor_advices
837
+                  scheduals[index].dialysis_order = dialysis_order
838
+                }
839
+              }
840
+              this.$store.dispatch("SetScheduals",{scheduals:scheduals})
841
+            }
842
+
807 843
             this.patient = patient
808 844
             this.schedual = schedual == null ? {} : schedual
809 845
             this.prescription = prescription == null ? {id: ''} : prescription
@@ -1185,6 +1221,7 @@
1185 1221
       update_evaluation: function (evaluation) {
1186 1222
         this.predialysis_evaluation = evaluation
1187 1223
         this.closeAssessmentBefore()
1224
+        this.requestDialysisRecord()
1188 1225
       }
1189 1226
       ,
1190 1227
       closeStatOrder: function () {
@@ -1196,6 +1233,7 @@
1196 1233
       closeDialysisComputer: function (dialysis_order) {
1197 1234
         this.closeDialog(0)
1198 1235
         this.dialysis_order = dialysis_order
1236
+        this.requestDialysisRecord()
1199 1237
         // this.scrollToView('dialysis_computer')
1200 1238
       },
1201 1239
        closeDialysisComputerclose: function (dialysis_order) {
@@ -1214,7 +1252,7 @@
1214 1252
         // this.scrollToView('monitoring')
1215 1253
       }
1216 1254
       ,
1217
-      closeDialysisOff: function (assessment_after_dislysis) {debugger
1255
+      closeDialysisOff: function (assessment_after_dislysis) {
1218 1256
         this.closeDialog(7)
1219 1257
         if (assessment_after_dislysis != undefined) {
1220 1258
           this.assessment_after_dislysis = assessment_after_dislysis

+ 5 - 1
src/pages/main/today/assessmentAfter.vue View File

@@ -17,7 +17,8 @@
17 17
         <li v-if="isShow('实际超滤量')">
18 18
           <label for="sjcll">实际超滤量: </label>
19 19
           <span class="content" id="sjcll">{{actual_ultrafiltration?actual_ultrafiltration:''}}</span>
20
-          <span class="unit">{{actual_ultrafiltration?"L":''}}</span>
20
+          <span v-if="template_id == 6" class="unit">{{actual_ultrafiltration?"ml":''}}</span>
21
+          <span v-else class="unit">{{actual_ultrafiltration?"L":''}}</span>
21 22
         </li>
22 23
         <li v-if="isShow('透析器凝血')">
23 24
           <label for="nx">透析器凝血 : </label>
@@ -187,6 +188,7 @@
187 188
     data() {
188 189
       return {
189 190
         title: "透后评估 ",
191
+        template_id: 0,
190 192
         // note: "无明显异常",
191 193
         // doctor: "刘小军  医生",
192 194
         // info1: [
@@ -216,6 +218,8 @@
216 218
       record: {
217 219
         type: Object,
218 220
       }
221
+    }, created() {
222
+      this.template_id = this.$store.getters.user.template_info.template_id
219 223
     },
220 224
     computed: {
221 225
       weight_after: function () {

+ 1 - 1
src/pages/main/today/detailsInfo.vue View File

@@ -1,4 +1,4 @@
1
-x<template>
1
+<template>
2 2
   <div class="info ">
3 3
     <h2 class="plateTitle"><span class="line"></span><p>基本信息</p><span class="line"></span> </h2>
4 4
 

+ 5 - 1
src/pages/main/today/statOrder.vue View File

@@ -12,7 +12,7 @@
12 12
         <th width="31%">医嘱内容</th>
13 13
         <th width="18.6%">执行时间</th>
14 14
         <th width="10.5%">执行护士</th>
15
-        <th width="9.4%">核对护士</th>
15
+        <th v-if="template_id != 6" width="9.4%">核对护士</th>
16 16
       </tr>
17 17
       <template v-for="(group) in advice_groups">
18 18
         <tr v-for="(advice, i) in group.advices" :key="advice.id">
@@ -54,6 +54,7 @@ export default {
54 54
   data() {
55 55
     return {
56 56
       title: "临时医嘱 ",
57
+      template_id: 0,
57 58
       tableDate: [],
58 59
     };
59 60
   },
@@ -68,6 +69,9 @@ export default {
68 69
       }
69 70
     }
70 71
   },
72
+   created () {
73
+      this.template_id = this.$store.getters.user.template_info.template_id
74
+    },
71 75
   methods: {
72 76
     setAdvices(advices) {
73 77
       if (advices == null) {

+ 4 - 0
src/store/index.js View File

@@ -11,6 +11,10 @@ import app from './app/app'
11 11
 Vue.use(Vuex)
12 12
 
13 13
 const getters = {
14
+  requestScheduals: state => state.user.requestScheduals,
15
+  requestDialysisScheduals: state => state.user.requestDialysisScheduals,
16
+  scheduals: state => state.user.scheduals,
17
+  waitscheduals: state => state.user.waitscheduals,
14 18
   patient_types: state => state.global_config.patient_types,
15 19
   partitions: state => state.global_config.partitions,
16 20
   marital_options: state => state.global_config.marital_options,

+ 64 - 37
src/store/user/user.js View File

@@ -1,45 +1,50 @@
1 1
 
2 2
 const user = {
3 3
   state: {
4
+
4 5
     role_type: 1, // 1.医生 2.护士
6
+    requestScheduals: {},
7
+    requestDialysisScheduals: {},
8
+    waitscheduals: {},
9
+    scheduals: {},
5 10
     user: {
6 11
       id: 0,
7
-      mobile: "",
8
-      avatar: "",
9
-      user_name: "",
10
-      intro: "",
12
+      mobile: '',
13
+      avatar: '',
14
+      user_name: '',
15
+      intro: '',
11 16
       user_type: 0,
12
-      user_title: 0,
17
+      user_title: 0
13 18
     },
14 19
     org: {
15 20
       id: 0,
16
-      org_short_name: "",
17
-      org_name: "",
18
-      org_intro: "",
19
-      org_logo: "",
20
-      address: "",
21
+      org_short_name: '',
22
+      org_name: '',
23
+      org_intro: '',
24
+      org_logo: '',
25
+      address: '',
21 26
       province: 0,
22 27
       city: 0,
23
-      district: 0,
28
+      district: 0
24 29
     },
25
-    serve:{
26
-      state:0,
27
-      status:1,
28
-      start:0,
29
-      end:0,
30
+    serve: {
31
+      state: 0,
32
+      status: 1,
33
+      start: 0,
34
+      end: 0
30 35
     },
31 36
     subscibe: {
32 37
       id: 0,
33
-			period_start: 0,
34
-			period_end: 0,
35
-			state: 3,
38
+      period_start: 0,
39
+      period_end: 0,
40
+      state: 3
36 41
     },
37
-    template_info:{
42
+    template_info: {
38 43
       id: 0,
39
-      org_id:0,
40
-      template_id:0,
44
+      org_id: 0,
45
+      template_id: 0
41 46
     },
42
-    fileds:[],
47
+    fileds: []
43 48
 
44 49
   },
45 50
 
@@ -48,7 +53,6 @@ const user = {
48 53
       state.fileds = payload.fileds
49 54
       console.log(payload.fileds)
50 55
       console.log(state.fileds)
51
-
52 56
     },
53 57
     SET_USER: (state, user) => {
54 58
       state.user.id = user.id
@@ -79,43 +83,66 @@ const user = {
79 83
     SET_ROLE_TYPE: (state, type) => {
80 84
       state.role_type = type
81 85
     },
82
-    SET_ORG_SERVE:(state, serve)=>{
86
+    SET_ORG_SERVE: (state, serve) => {
83 87
       state.serve.state = serve.state
84 88
       state.serve.status = serve.status
85 89
       state.serve.start = serve.start
86 90
       state.serve.end = serve.end
87
-    },SET_TEMPLATE:(state, template_info) =>{
91
+    },
92
+    // eslint-disable-next-line camelcase
93
+    SET_TEMPLATE: (state, template_info) => {
88 94
       state.template_info.id = template_info.id
89 95
       state.template_info.org_id = template_info.org_id
90 96
       state.template_info.template_id = template_info.template_id
97
+    },
98
+    SET_REQUESTSCHEDUALS: (state, requestScheduals) => {
99
+      state.requestScheduals = requestScheduals
100
+    },
101
+    SET_REQUESTDIALYSISSCHEDUALS: (state, requestDialysisScheduals) => {
102
+      state.requestDialysisScheduals = requestDialysisScheduals
103
+    },
104
+    SET_SCHEDUALS: (state, scheduals) => {
105
+      state.scheduals = scheduals
106
+    },
107
+    SET_WAITSCHEDUALS: (state, waitscheduals) => {
108
+      state.waitscheduals = waitscheduals
91 109
     }
92 110
   },
93 111
 
94 112
   actions: {
95
-    InitUserInfo({commit}, userInfo) {
113
+    InitUserInfo ({commit}, userInfo) {
96 114
       var user = userInfo.user
97 115
       var org = userInfo.org
98 116
       var subscibe = userInfo.subscibe
117
+      // eslint-disable-next-line camelcase
99 118
       var template_info = userInfo.template_info
100 119
 
101 120
       var fileds = userInfo.filed_list
102 121
       console.log(userInfo.filed_list)
103 122
       console.log(fileds)
104 123
 
105
-      commit("SET_USER", user)
106
-      commit("SET_ORG", org)
107
-      commit("SET_SUBSCIBE", subscibe)
108
-      commit("SET_TEMPLATE", template_info)
124
+      commit('SET_USER', user)
125
+      commit('SET_ORG', org)
126
+      commit('SET_SUBSCIBE', subscibe)
127
+      commit('SET_TEMPLATE', template_info)
109 128
       commit('SET_FILEDS', {
110 129
         fileds
111 130
       })
112
-
113
-
114
-
115
-
116 131
     },
117
-    SwitchRoleTypeToDoctor({commit}) {
118
-      commit("SET_ROLE_TYPE", 1)
132
+    SwitchRoleTypeToDoctor ({commit}) {
133
+      commit('SET_ROLE_TYPE', 1)
134
+    },
135
+    SetRequestScheduals ({commit}, requestScheduals) {
136
+      commit('SET_REQUESTSCHEDUALS', requestScheduals)
137
+    },
138
+    SetRequestDialysisScheduals ({commit}, requestDialysisScheduals) {
139
+      commit('SET_REQUESTDIALYSISSCHEDUALS', requestDialysisScheduals)
140
+    },
141
+    SetScheduals ({commit}, scheduals) {
142
+      commit('SET_SCHEDUALS', scheduals)
143
+    },
144
+    SetWaitScheduals ({commit}, waitscheduals) {
145
+      commit('SET_WAITSCHEDUALS', waitscheduals)
119 146
     }
120 147
   }
121 148
 }