Procházet zdrojové kódy

修改中能建问题

张保健 před 5 roky
rodič
revize
6f156da79f

+ 1 - 1
src/pages/home/login.vue Zobrazit soubor

45
   computed: {
45
   computed: {
46
     loginDisable() {
46
     loginDisable() {
47
       // return false
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
   created() {
51
   created() {

+ 0 - 1
src/pages/main/DetailsPage.vue Zobrazit soubor

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

+ 49 - 2
src/pages/main/DialysisArea.vue Zobrazit soubor

265
 
265
 
266
   created () {
266
   created () {
267
     this.user_id = this.$store.getters.user.user.id
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
   mounted () {
317
   mounted () {
271
     this.timer = window.setInterval(() => {
318
     this.timer = window.setInterval(() => {
334
 
381
 
335
             // console.log(resp.data)
382
             // console.log(resp.data)
336
             var scheduals = resp.data.scheduals
383
             var scheduals = resp.data.scheduals
337
-            console.log('scheduals是什么', scheduals)
384
+            this.$store.dispatch("SetScheduals",{scheduals:scheduals})
338
             var zoneMap = {}
385
             var zoneMap = {}
339
             var schedualMap = {}
386
             var schedualMap = {}
340
             for (let index = 0; index < scheduals.length; index++) {
387
             for (let index = 0; index < scheduals.length; index++) {

+ 57 - 34
src/pages/main/WaitingArea.vue Zobrazit soubor

186
         //   }
186
         //   }
187
         // }
187
         // }
188
         var zone_name = this.zone_options[this.zone_selected].text
188
         var zone_name = this.zone_options[this.zone_selected].text
189
-        console.log(zone_name)
190
         var schedules = [];
189
         var schedules = [];
190
+        var filtedSchedules = [];
191
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
191
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
192
           const scheduleInfo = this.zone_scheduals[o_i];
192
           const scheduleInfo = this.zone_scheduals[o_i];
193
           var originSchedules = scheduleInfo.scheduals;
193
           var originSchedules = scheduleInfo.scheduals;
194
-          var filtedSchedules = [];
194
+          
195
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
195
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
196
             const schedule = originSchedules[s_i];
196
             const schedule = originSchedules[s_i];
197
             if(this.zone_selected == 0){
197
             if(this.zone_selected == 0){
198
               if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
198
               if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
199
                 filtedSchedules.push(schedule);
199
                 filtedSchedules.push(schedule);
200
               }
200
               }
201
-
202
             }else{
201
             }else{
203
-              console.log(zone_name)
204
-              console.log(schedule.device_number.zone.name)
205
-
206
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
202
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
207
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
203
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
208
                   filtedSchedules.push(schedule);
204
                   filtedSchedules.push(schedule);
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
       if (this.time_selected != 0) {
220
       if (this.time_selected != 0) {
224
         var zone_name = this.zone_options[this.zone_selected].text
221
         var zone_name = this.zone_options[this.zone_selected].text
225
-        console.log(zone_name)
226
         var schedules = [];
222
         var schedules = [];
223
+        var filtedSchedules = [];
227
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
224
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
228
           const scheduleInfo = this.zone_scheduals[o_i];
225
           const scheduleInfo = this.zone_scheduals[o_i];
229
           var originSchedules = scheduleInfo.scheduals;
226
           var originSchedules = scheduleInfo.scheduals;
230
-          var filtedSchedules = [];
227
+          
231
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
228
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
232
             const schedule = originSchedules[s_i];
229
             const schedule = originSchedules[s_i];
233
             if(this.zone_selected == 0){
230
             if(this.zone_selected == 0){
236
               }
233
               }
237
 
234
 
238
             }else{
235
             }else{
239
-              console.log(zone_name)
240
-              console.log(schedule.device_number.zone.name)
241
-
242
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
236
               if ((zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
243
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
237
                 if (this.time_selected == 0 || schedule.schedule_type == this.time_selected) {
244
                   filtedSchedules.push(schedule);
238
                   filtedSchedules.push(schedule);
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
       var zone_selected = this.zone_selected;
254
       var zone_selected = this.zone_selected;
263
       if (zone_selected != 0 || timetype_selected != 0) {
258
       if (zone_selected != 0 || timetype_selected != 0) {
264
         var zone_name = zone_selected == 0 ? "" : this.zone_options[zone_selected].text;
259
         var zone_name = zone_selected == 0 ? "" : this.zone_options[zone_selected].text;
265
         var schedules = [];
260
         var schedules = [];
261
+        var filtedSchedules = [];
266
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
262
         for (let o_i = 0; o_i < this.zone_scheduals.length; o_i++) {
267
           const scheduleInfo = this.zone_scheduals[o_i];
263
           const scheduleInfo = this.zone_scheduals[o_i];
268
           var originSchedules = scheduleInfo.scheduals;
264
           var originSchedules = scheduleInfo.scheduals;
269
-          var filtedSchedules = [];
265
+          
270
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
266
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
271
             const schedule = originSchedules[s_i];
267
             const schedule = originSchedules[s_i];
272
             if ( zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
268
             if ( zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
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
         if (this.select_index == 2) {
285
         if (this.select_index == 2) {
288
           var scheduals = [];
286
           var scheduals = [];
289
           for (let index = 0; index < this.scheduals.length; index++) {
287
           for (let index = 0; index < this.scheduals.length; index++) {
389
     if (type != null) {
387
     if (type != null) {
390
       this.select_index = parseInt(type);
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
   mounted() {
416
   mounted() {
395
     this.timer = window.setInterval(() => {
417
     this.timer = window.setInterval(() => {
507
             this.loading = false;
529
             this.loading = false;
508
 
530
 
509
             var scheduals = resp.data.scheduals;
531
             var scheduals = resp.data.scheduals;
532
+            this.$store.dispatch("SetWaitScheduals",{waitscheduals:scheduals})
510
             var totalCount = scheduals.length;
533
             var totalCount = scheduals.length;
511
             var prescription_count = 0;
534
             var prescription_count = 0;
512
             var assessment_before_dislysis_count = 0;
535
             var assessment_before_dislysis_count = 0;

+ 8 - 6
src/pages/main/dialog/OrdersDialog.vue Zobrazit soubor

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

+ 20 - 22
src/pages/main/dialog/ThorougDialog.vue Zobrazit soubor

1258
       let tempMinute = ''
1258
       let tempMinute = ''
1259
       this.template_id = this.$store.getters.user.template_info.template_id
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
         for (const key in this.formValue) {
1262
         for (const key in this.formValue) {
1264
           // console.log(key, this.record[key]);
1263
           // console.log(key, this.record[key]);
1265
           this.formValue[key] = this.record[key];
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 Zobrazit soubor

41
     methods: {
41
     methods: {
42
 
42
 
43
       requestScheduals () {
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
             var resp = rs.data
68
             var resp = rs.data
69
+             this.$store.dispatch("SetRequestScheduals",{resp})
70
+            // console.log(resp);
83
             if (resp.state == 1) {
71
             if (resp.state == 1) {
84
               var scheduals = resp.data.scheduals
72
               var scheduals = resp.data.scheduals
73
+              this.scheduals = scheduals
74
+              console.log(this.scheduals)
85
               let doctorAdvice = []
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
                 return [item.groupno]
87
                 return [item.groupno]
100
               })
88
               })
101
 
89
 
102
-              this.unReadDialysisNum = sorted.length
90
+
91
+              this.unReadWaitNum = sorted.length
103
 
92
 
104
             } else {
93
             } else {
105
               this.$toast({
94
               this.$toast({
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
       }, groupBy (array, f) {
160
       }, groupBy (array, f) {
113
         const groups = {}
161
         const groups = {}
114
         array.forEach(function (o) {
162
         array.forEach(function (o) {

+ 13 - 1
src/pages/main/template/DialysisPrintOrderSix.vue Zobrazit soubor

133
                 <div class="inline_block" style="margin-left:10px;">
133
                 <div class="inline_block" style="margin-left:10px;">
134
                   血管通路:
134
                   血管通路:
135
                   <div class="under_line" style="width: 200px;text-align: center;">
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
                   </div>
137
                   </div>
138
                 </div>
138
                 </div>
139
               </div>
139
               </div>
748
       }
748
       }
749
     },
749
     },
750
     methods: {
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
       getAdminUser(id) {
763
       getAdminUser(id) {
752
         if (id == 0) {
764
         if (id == 0) {
753
           return ''
765
           return ''

+ 39 - 1
src/pages/main/today/TodayTab.vue Zobrazit soubor

389
       this.date = date
389
       this.date = date
390
       this.requestDialysisRecord()
390
       this.requestDialysisRecord()
391
       this.requestLongAdvice()
391
       this.requestLongAdvice()
392
+      this.goTop()
392
 
393
 
393
     },
394
     },
394
     mounted () {
395
     mounted () {
763
           console.log(resp)
764
           console.log(resp)
764
 
765
 
765
           if (resp.state == 1) {
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
             var patient = resp.data.patient // 患者信息
775
             var patient = resp.data.patient // 患者信息
767
             var schedual = resp.data.schedual // 患者排班信息
776
             var schedual = resp.data.schedual // 患者排班信息
768
             var prescription = resp.data.prescription // 透析处方
777
             var prescription = resp.data.prescription // 透析处方
804
               resp.data.last_assessment_after_dislysis // 上一次透前评估
813
               resp.data.last_assessment_after_dislysis // 上一次透前评估
805
             var last_monitor_record = resp.data.last_monitor_record
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
             this.patient = patient
843
             this.patient = patient
808
             this.schedual = schedual == null ? {} : schedual
844
             this.schedual = schedual == null ? {} : schedual
809
             this.prescription = prescription == null ? {id: ''} : prescription
845
             this.prescription = prescription == null ? {id: ''} : prescription
1185
       update_evaluation: function (evaluation) {
1221
       update_evaluation: function (evaluation) {
1186
         this.predialysis_evaluation = evaluation
1222
         this.predialysis_evaluation = evaluation
1187
         this.closeAssessmentBefore()
1223
         this.closeAssessmentBefore()
1224
+        this.requestDialysisRecord()
1188
       }
1225
       }
1189
       ,
1226
       ,
1190
       closeStatOrder: function () {
1227
       closeStatOrder: function () {
1196
       closeDialysisComputer: function (dialysis_order) {
1233
       closeDialysisComputer: function (dialysis_order) {
1197
         this.closeDialog(0)
1234
         this.closeDialog(0)
1198
         this.dialysis_order = dialysis_order
1235
         this.dialysis_order = dialysis_order
1236
+        this.requestDialysisRecord()
1199
         // this.scrollToView('dialysis_computer')
1237
         // this.scrollToView('dialysis_computer')
1200
       },
1238
       },
1201
        closeDialysisComputerclose: function (dialysis_order) {
1239
        closeDialysisComputerclose: function (dialysis_order) {
1214
         // this.scrollToView('monitoring')
1252
         // this.scrollToView('monitoring')
1215
       }
1253
       }
1216
       ,
1254
       ,
1217
-      closeDialysisOff: function (assessment_after_dislysis) {debugger
1255
+      closeDialysisOff: function (assessment_after_dislysis) {
1218
         this.closeDialog(7)
1256
         this.closeDialog(7)
1219
         if (assessment_after_dislysis != undefined) {
1257
         if (assessment_after_dislysis != undefined) {
1220
           this.assessment_after_dislysis = assessment_after_dislysis
1258
           this.assessment_after_dislysis = assessment_after_dislysis

+ 5 - 1
src/pages/main/today/assessmentAfter.vue Zobrazit soubor

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

+ 1 - 1
src/pages/main/today/detailsInfo.vue Zobrazit soubor

1
-x<template>
1
+<template>
2
   <div class="info ">
2
   <div class="info ">
3
     <h2 class="plateTitle"><span class="line"></span><p>基本信息</p><span class="line"></span> </h2>
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 Zobrazit soubor

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

+ 4 - 0
src/store/index.js Zobrazit soubor

11
 Vue.use(Vuex)
11
 Vue.use(Vuex)
12
 
12
 
13
 const getters = {
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
   patient_types: state => state.global_config.patient_types,
18
   patient_types: state => state.global_config.patient_types,
15
   partitions: state => state.global_config.partitions,
19
   partitions: state => state.global_config.partitions,
16
   marital_options: state => state.global_config.marital_options,
20
   marital_options: state => state.global_config.marital_options,

+ 64 - 37
src/store/user/user.js Zobrazit soubor

1
 
1
 
2
 const user = {
2
 const user = {
3
   state: {
3
   state: {
4
+
4
     role_type: 1, // 1.医生 2.护士
5
     role_type: 1, // 1.医生 2.护士
6
+    requestScheduals: {},
7
+    requestDialysisScheduals: {},
8
+    waitscheduals: {},
9
+    scheduals: {},
5
     user: {
10
     user: {
6
       id: 0,
11
       id: 0,
7
-      mobile: "",
8
-      avatar: "",
9
-      user_name: "",
10
-      intro: "",
12
+      mobile: '',
13
+      avatar: '',
14
+      user_name: '',
15
+      intro: '',
11
       user_type: 0,
16
       user_type: 0,
12
-      user_title: 0,
17
+      user_title: 0
13
     },
18
     },
14
     org: {
19
     org: {
15
       id: 0,
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
       province: 0,
26
       province: 0,
22
       city: 0,
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
     subscibe: {
36
     subscibe: {
32
       id: 0,
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
       id: 0,
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
       state.fileds = payload.fileds
53
       state.fileds = payload.fileds
49
       console.log(payload.fileds)
54
       console.log(payload.fileds)
50
       console.log(state.fileds)
55
       console.log(state.fileds)
51
-
52
     },
56
     },
53
     SET_USER: (state, user) => {
57
     SET_USER: (state, user) => {
54
       state.user.id = user.id
58
       state.user.id = user.id
79
     SET_ROLE_TYPE: (state, type) => {
83
     SET_ROLE_TYPE: (state, type) => {
80
       state.role_type = type
84
       state.role_type = type
81
     },
85
     },
82
-    SET_ORG_SERVE:(state, serve)=>{
86
+    SET_ORG_SERVE: (state, serve) => {
83
       state.serve.state = serve.state
87
       state.serve.state = serve.state
84
       state.serve.status = serve.status
88
       state.serve.status = serve.status
85
       state.serve.start = serve.start
89
       state.serve.start = serve.start
86
       state.serve.end = serve.end
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
       state.template_info.id = template_info.id
94
       state.template_info.id = template_info.id
89
       state.template_info.org_id = template_info.org_id
95
       state.template_info.org_id = template_info.org_id
90
       state.template_info.template_id = template_info.template_id
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
   actions: {
112
   actions: {
95
-    InitUserInfo({commit}, userInfo) {
113
+    InitUserInfo ({commit}, userInfo) {
96
       var user = userInfo.user
114
       var user = userInfo.user
97
       var org = userInfo.org
115
       var org = userInfo.org
98
       var subscibe = userInfo.subscibe
116
       var subscibe = userInfo.subscibe
117
+      // eslint-disable-next-line camelcase
99
       var template_info = userInfo.template_info
118
       var template_info = userInfo.template_info
100
 
119
 
101
       var fileds = userInfo.filed_list
120
       var fileds = userInfo.filed_list
102
       console.log(userInfo.filed_list)
121
       console.log(userInfo.filed_list)
103
       console.log(fileds)
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
       commit('SET_FILEDS', {
128
       commit('SET_FILEDS', {
110
         fileds
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
 }