|
@@ -114,105 +114,104 @@
|
114
|
114
|
</template>
|
115
|
115
|
|
116
|
116
|
<script>
|
117
|
|
-import PatientBox from "./PatientBox";
|
118
|
|
-import { Popover } from "vux";
|
119
|
|
-import { Datetime } from "vux";
|
120
|
|
-import { parseTime } from "@/utils/index";
|
121
|
|
-import { getDialysisScheduals } from "@/api/dialysis";
|
122
|
|
-import { Toast } from "vant";
|
|
117
|
+import PatientBox from './PatientBox'
|
|
118
|
+import { Popover } from 'vux'
|
|
119
|
+import { Datetime } from 'vux'
|
|
120
|
+import { parseTime } from '@/utils/index'
|
|
121
|
+import { getDialysisScheduals } from '@/api/dialysis'
|
|
122
|
+import { Toast } from 'vant'
|
123
|
123
|
|
124
|
124
|
export default {
|
125
|
|
- name: "DialysisArea",
|
|
125
|
+ name: 'DialysisArea',
|
126
|
126
|
components: {
|
127
|
127
|
PatientBox,
|
128
|
128
|
Popover,
|
129
|
129
|
Datetime
|
130
|
130
|
},
|
131
|
|
- inject: ["reload"],
|
132
|
|
- data() {
|
|
131
|
+ inject: ['reload'],
|
|
132
|
+ data () {
|
133
|
133
|
return {
|
134
|
134
|
loading: false,
|
135
|
135
|
user_id: 0,
|
136
|
136
|
networkStates: true,
|
137
|
137
|
timer: null,
|
138
|
138
|
ismypatient: false,
|
139
|
|
- selected_date: this.$store.getters.app.dialysis_area.schedule_date, //new Date(),
|
|
139
|
+ selected_date: this.$store.getters.app.dialysis_area.schedule_date, // new Date(),
|
140
|
140
|
schedual_types: [
|
141
|
|
- { value: 0, text: "全部班", select: true },
|
142
|
|
- { value: 1, text: "上午", select: false },
|
143
|
|
- { value: 2, text: "下午", select: false },
|
144
|
|
- { value: 3, text: "晚上", select: false }
|
|
141
|
+ { value: 0, text: '全部班', select: true },
|
|
142
|
+ { value: 1, text: '上午', select: false },
|
|
143
|
+ { value: 2, text: '下午', select: false },
|
|
144
|
+ { value: 3, text: '晚上', select: false }
|
145
|
145
|
],
|
146
|
146
|
schedual_type_selected: this.$store.getters.app.dialysis_area
|
147
|
147
|
.schedule_type_select_index,
|
148
|
148
|
|
149
|
149
|
zone_selected: this.$store.getters.app.dialysis_area.zone_select_index,
|
150
|
|
- zones: [{ value: 0, text: "全部分区", select: true }],
|
|
150
|
+ zones: [{ value: 0, text: '全部分区', select: true }],
|
151
|
151
|
dialysis_scheduals: [],
|
152
|
152
|
|
153
|
153
|
zone_options_visible: false,
|
154
|
154
|
sch_type_options_visible: false
|
155
|
|
- };
|
|
155
|
+ }
|
156
|
156
|
},
|
157
|
157
|
props: {
|
158
|
158
|
search_keyword: {
|
159
|
159
|
type: String,
|
160
|
|
- default: ""
|
|
160
|
+ default: ''
|
161
|
161
|
}
|
162
|
162
|
},
|
163
|
163
|
computed: {
|
164
|
|
- selected_date_str: function() {
|
165
|
|
- return parseTime(this.selected_date, "{y}-{m}-{d}");
|
|
164
|
+ selected_date_str: function () {
|
|
165
|
+ return parseTime(this.selected_date, '{y}-{m}-{d}')
|
166
|
166
|
},
|
167
|
167
|
|
168
|
|
- filtedScheduals: function() {
|
|
168
|
+ filtedScheduals: function () {
|
169
|
169
|
if (this.dialysis_scheduals.length == 0) {
|
170
|
|
- return [];
|
|
170
|
+ return []
|
171
|
171
|
}
|
172
|
172
|
|
173
|
|
- var search_keyword = this.search_keyword;
|
|
173
|
+ var search_keyword = this.search_keyword
|
174
|
174
|
if (search_keyword.length > 0) {
|
175
|
|
- var schedules = [];
|
|
175
|
+ var schedules = []
|
176
|
176
|
for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
|
177
|
|
- const scheduleInfo = this.dialysis_scheduals[o_i];
|
178
|
|
- var originSchedules = scheduleInfo.scheduals;
|
|
177
|
+ const scheduleInfo = this.dialysis_scheduals[o_i]
|
|
178
|
+ var originSchedules = scheduleInfo.scheduals
|
179
|
179
|
if (originSchedules.length == 0) {
|
180
|
|
- continue;
|
|
180
|
+ continue
|
181
|
181
|
}
|
182
|
|
- var filtedSchedules = [];
|
|
182
|
+ var filtedSchedules = []
|
183
|
183
|
for (let s_i = 0; s_i < originSchedules.length; s_i++) {
|
184
|
|
- const schedule = originSchedules[s_i];
|
|
184
|
+ const schedule = originSchedules[s_i]
|
185
|
185
|
if (
|
186
|
186
|
schedule.patient.name.indexOf(search_keyword) != -1 ||
|
187
|
187
|
schedule.patient.dialysis_no.indexOf(search_keyword) != -1
|
188
|
188
|
) {
|
189
|
|
- filtedSchedules.push(schedule);
|
190
|
|
- break;
|
|
189
|
+ filtedSchedules.push(schedule)
|
|
190
|
+ break
|
191
|
191
|
}
|
192
|
192
|
}
|
193
|
193
|
if (filtedSchedules.length > 0) {
|
194
|
194
|
schedules.push({
|
195
|
195
|
zone_name: scheduleInfo.zone_name,
|
196
|
196
|
scheduals: filtedSchedules
|
197
|
|
- });
|
|
197
|
+ })
|
198
|
198
|
}
|
199
|
199
|
}
|
200
|
|
- return schedules;
|
|
200
|
+ return schedules
|
201
|
201
|
}
|
202
|
|
-
|
203
|
|
- if (this.ismypatient) {
|
204
|
|
- var schedules = [];
|
|
202
|
+ if (this.ismypatient) {
|
|
203
|
+ var schedules = []
|
205
|
204
|
for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
|
206
|
|
- const scheduleInfo = this.dialysis_scheduals[o_i];
|
207
|
|
- var originSchedules = scheduleInfo.scheduals;
|
|
205
|
+ const scheduleInfo = this.dialysis_scheduals[o_i]
|
|
206
|
+ var originSchedules = scheduleInfo.scheduals
|
208
|
207
|
if (originSchedules.length == 0) {
|
209
|
|
- continue;
|
|
208
|
+ continue
|
210
|
209
|
}
|
211
|
|
- var filtedSchedules = [];
|
|
210
|
+ var filtedSchedules = []
|
212
|
211
|
for (let s_i = 0; s_i < originSchedules.length; s_i++) {
|
213
|
|
- const schedule = originSchedules[s_i];
|
214
|
|
- if (schedule.dialysis_order.start_nurse == this.user_id ) {
|
215
|
|
- filtedSchedules.push(schedule);
|
|
212
|
+ const schedule = originSchedules[s_i]
|
|
213
|
+ if (schedule.dialysis_order.start_nurse == this.user_id) {
|
|
214
|
+ filtedSchedules.push(schedule)
|
216
|
215
|
// break;
|
217
|
216
|
}
|
218
|
217
|
}
|
|
@@ -220,35 +219,34 @@ export default {
|
220
|
219
|
schedules.push({
|
221
|
220
|
zone_name: scheduleInfo.zone_name,
|
222
|
221
|
scheduals: filtedSchedules
|
223
|
|
- });
|
|
222
|
+ })
|
224
|
223
|
}
|
225
|
224
|
}
|
226
|
|
- return schedules;
|
|
225
|
+ return schedules
|
227
|
226
|
}
|
228
|
227
|
|
229
|
|
- var zone_selected = this.zone_selected;
|
230
|
|
- var timetype_selected = this.schedual_type_selected;
|
231
|
|
- if ( (zone_selected == 0 && timetype_selected == 0) || this.zones.length <= 1 ) {
|
232
|
|
- return this.dialysis_scheduals;
|
|
228
|
+ var zone_selected = this.zone_selected
|
|
229
|
+ var timetype_selected = this.schedual_type_selected
|
|
230
|
+ if ((zone_selected == 0 && timetype_selected == 0) || this.zones.length <= 1) {
|
|
231
|
+ return this.dialysis_scheduals
|
233
|
232
|
}
|
234
|
233
|
|
235
|
|
- var zone_name = zone_selected == 0 ? "" : this.zones[zone_selected].text;
|
236
|
|
- var schedules = [];
|
|
234
|
+ var zone_name = zone_selected == 0 ? '' : this.zones[zone_selected].text
|
|
235
|
+ var schedules = []
|
237
|
236
|
for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
|
238
|
|
- const scheduleInfo = this.dialysis_scheduals[o_i];
|
239
|
|
- var originSchedules = scheduleInfo.scheduals;
|
240
|
|
- var filtedSchedules = [];
|
|
237
|
+ const scheduleInfo = this.dialysis_scheduals[o_i]
|
|
238
|
+ var originSchedules = scheduleInfo.scheduals
|
|
239
|
+ var filtedSchedules = []
|
241
|
240
|
for (let s_i = 0; s_i < originSchedules.length; s_i++) {
|
242
|
|
- const schedule = originSchedules[s_i];
|
243
|
|
- if(this.ismypatient){
|
244
|
|
- if ( schedule.dialysis_order.creator == this.user_id){
|
245
|
|
- filtedSchedules.push(schedule);
|
|
241
|
+ const schedule = originSchedules[s_i]
|
|
242
|
+ if (this.ismypatient) {
|
|
243
|
+ if (schedule.dialysis_order.creator == this.user_id) {
|
|
244
|
+ filtedSchedules.push(schedule)
|
246
|
245
|
}
|
247
|
|
- }
|
248
|
|
- else {
|
249
|
|
- if ( zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name) ) {
|
250
|
|
- if ( timetype_selected == 0 || schedule.schedule_type == timetype_selected ) {
|
251
|
|
- filtedSchedules.push(schedule);
|
|
246
|
+ } else {
|
|
247
|
+ if (zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
|
|
248
|
+ if (timetype_selected == 0 || schedule.schedule_type == timetype_selected) {
|
|
249
|
+ filtedSchedules.push(schedule)
|
252
|
250
|
}
|
253
|
251
|
}
|
254
|
252
|
}
|
|
@@ -257,160 +255,165 @@ export default {
|
257
|
255
|
schedules.push({
|
258
|
256
|
zone_name: scheduleInfo.zone_name,
|
259
|
257
|
scheduals: filtedSchedules
|
260
|
|
- });
|
|
258
|
+ })
|
261
|
259
|
}
|
262
|
260
|
}
|
263
|
261
|
this.ismypatient = false
|
264
|
|
- return schedules;
|
|
262
|
+ return schedules
|
265
|
263
|
}
|
266
|
264
|
},
|
267
|
|
- created() {
|
268
|
|
- this.user_id = this.$store.getters.user.user.id;
|
269
|
|
- this.requestDialysisScheduals();
|
|
265
|
+
|
|
266
|
+ created () {
|
|
267
|
+ this.user_id = this.$store.getters.user.user.id
|
|
268
|
+ this.requestDialysisScheduals()
|
270
|
269
|
},
|
271
|
|
- mounted() {
|
|
270
|
+ mounted () {
|
272
|
271
|
this.timer = window.setInterval(() => {
|
273
|
|
- setTimeout(this.requestDialysisScheduals(), 0);
|
274
|
|
- }, 30000);
|
|
272
|
+ setTimeout(this.requestDialysisScheduals(), 0)
|
|
273
|
+ }, 30000)
|
275
|
274
|
},
|
276
|
|
- beforeDestroy() {
|
277
|
|
- clearInterval(this.timer);
|
278
|
|
- this.timer = null;
|
|
275
|
+ beforeDestroy () {
|
|
276
|
+ clearInterval(this.timer)
|
|
277
|
+ this.timer = null
|
279
|
278
|
},
|
280
|
279
|
methods: {
|
281
|
|
- mypatient(){
|
282
|
|
- this.search_keyword = '';
|
283
|
|
- this.zone_selected = 0;
|
284
|
|
- this.schedual_type_selected = 0;
|
285
|
|
- this.ismypatient = true;
|
|
280
|
+ mypatient () {
|
|
281
|
+ this.search_keyword = ''
|
|
282
|
+ this.zone_selected = 0
|
|
283
|
+ this.schedual_type_selected = 0
|
|
284
|
+ this.ismypatient = true
|
286
|
285
|
},
|
287
|
|
- reloads: function() {
|
288
|
|
- this.reload();
|
|
286
|
+ reloads: function () {
|
|
287
|
+ this.reload()
|
289
|
288
|
},
|
290
|
|
- handletimeType: function(index) {
|
|
289
|
+ handletimeType: function (index) {
|
291
|
290
|
this.ismypatient = false
|
292
|
|
- this.sch_type_options_visible = false;
|
293
|
|
- this.schedual_type_selected = index;
|
294
|
|
- this.$emit("clear_search_keyword");
|
295
|
|
- this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
|
|
291
|
+ this.sch_type_options_visible = false
|
|
292
|
+ this.schedual_type_selected = index
|
|
293
|
+ this.$emit('clear_search_keyword')
|
|
294
|
+ this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
|
296
|
295
|
zone: this.zone_selected,
|
297
|
296
|
schedule_type: this.schedual_type_selected,
|
298
|
297
|
schedule_date: this.selected_date
|
299
|
|
- });
|
|
298
|
+ })
|
300
|
299
|
},
|
301
|
|
- handleZoneChange: function(index) {
|
|
300
|
+ handleZoneChange: function (index) {
|
302
|
301
|
this.ismypatient = false
|
303
|
|
- this.zone_options_visible = false;
|
304
|
|
- this.zone_selected = index;
|
305
|
|
- this.$emit("clear_search_keyword");
|
306
|
|
- this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
|
|
302
|
+ this.zone_options_visible = false
|
|
303
|
+ this.zone_selected = index
|
|
304
|
+ this.$emit('clear_search_keyword')
|
|
305
|
+ this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
|
307
|
306
|
zone: this.zone_selected,
|
308
|
307
|
schedule_type: this.schedual_type_selected,
|
309
|
308
|
schedule_date: this.selected_date
|
310
|
|
- });
|
|
309
|
+ })
|
311
|
310
|
},
|
312
|
|
- handleScheduleDateChange: function(date) {
|
|
311
|
+ handleScheduleDateChange: function (date) {
|
313
|
312
|
this.ismypatient = false
|
314
|
|
- this.zone_selected = 0;
|
315
|
|
- this.schedual_type_selected = 0;
|
316
|
|
-
|
317
|
|
- this.$emit("clear_search_keyword");
|
318
|
|
- this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
|
|
313
|
+ this.zone_selected = 0
|
|
314
|
+ this.schedual_type_selected = 0
|
|
315
|
+ this.$emit('clear_search_keyword')
|
|
316
|
+ this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
|
319
|
317
|
zone: this.zone_selected,
|
320
|
318
|
schedule_type: this.schedual_type_selected,
|
321
|
319
|
schedule_date: this.selected_date
|
322
|
|
- });
|
323
|
|
- this.requestDialysisScheduals();
|
|
320
|
+ })
|
|
321
|
+ this.requestDialysisScheduals()
|
324
|
322
|
},
|
325
|
323
|
|
326
|
|
- requestDialysisScheduals() {
|
|
324
|
+ requestDialysisScheduals () {
|
327
|
325
|
// this.$toast.loading({forbidClick: true, duration: 0})
|
328
|
326
|
// this.loading = true;
|
329
|
|
- var type = 0;
|
|
327
|
+ var type = 0
|
330
|
328
|
getDialysisScheduals({ type: type, date: this.selected_date_str })
|
331
|
329
|
.then(rs => {
|
332
|
|
- this.networkStates = true;
|
333
|
|
- var resp = rs.data;
|
|
330
|
+ this.networkStates = true
|
|
331
|
+ var resp = rs.data
|
334
|
332
|
if (resp.state == 1) {
|
335
|
|
- this.loading = false;
|
|
333
|
+ this.loading = false
|
336
|
334
|
|
337
|
335
|
// console.log(resp.data)
|
338
|
|
- var scheduals = resp.data.scheduals;
|
339
|
|
- var zoneMap = {};
|
340
|
|
- var schedualMap = {};
|
|
336
|
+ var scheduals = resp.data.scheduals
|
|
337
|
+ console.log('scheduals是什么', scheduals)
|
|
338
|
+ var zoneMap = {}
|
|
339
|
+ var schedualMap = {}
|
341
|
340
|
for (let index = 0; index < scheduals.length; index++) {
|
342
|
|
- const schedual = scheduals[index];
|
|
341
|
+ const schedual = scheduals[index]
|
343
|
342
|
if (schedual.dialysis_order == null) {
|
344
|
|
- continue;
|
|
343
|
+ continue
|
345
|
344
|
}
|
346
|
345
|
if (schedualMap[schedual.device_number.zone.name] == null) {
|
347
|
|
- schedualMap[schedual.device_number.zone.name] = [];
|
|
346
|
+ schedualMap[schedual.device_number.zone.name] = []
|
348
|
347
|
}
|
349
|
|
- schedualMap[schedual.device_number.zone.name].push(schedual);
|
|
348
|
+ schedualMap[schedual.device_number.zone.name].push(schedual)
|
350
|
349
|
if (zoneMap[schedual.device_number.zone.name] == null) {
|
351
|
350
|
zoneMap[schedual.device_number.zone.name] =
|
352
|
|
- schedual.device_number.zone;
|
|
351
|
+ schedual.device_number.zone
|
353
|
352
|
}
|
354
|
353
|
}
|
355
|
354
|
|
356
|
|
- var zones = [];
|
357
|
|
- zones.push({ value: 0, text: "全部分区" });
|
|
355
|
+ var zones = []
|
|
356
|
+ zones.push({ value: 0, text: '全部分区' })
|
358
|
357
|
for (var zoneName in zoneMap) {
|
359
|
|
- zones.push({ value: zoneMap[zoneName].id, text: zoneName });
|
|
358
|
+ zones.push({ value: zoneMap[zoneName].id, text: zoneName })
|
360
|
359
|
}
|
361
|
360
|
|
362
|
|
- zones = zones.sort(function(a, b) {
|
363
|
|
- return a.value > b.value;
|
364
|
|
- });
|
365
|
|
- this.zones = zones;
|
|
361
|
+ zones = zones.sort(function (a, b) {
|
|
362
|
+ return a.value > b.value
|
|
363
|
+ })
|
|
364
|
+ this.zones = zones
|
366
|
365
|
|
367
|
|
- var dialysis_scheduals = [];
|
|
366
|
+ var dialysis_scheduals = []
|
368
|
367
|
for (let index = 0; index < zones.length; index++) {
|
369
|
|
- const zone = zones[index];
|
370
|
|
- var scheduals = schedualMap[zone.text];
|
|
368
|
+ const zone = zones[index]
|
|
369
|
+ var scheduals = schedualMap[zone.text]
|
371
|
370
|
if (scheduals == null) {
|
372
|
|
- continue;
|
|
371
|
+ continue
|
373
|
372
|
}
|
374
|
373
|
dialysis_scheduals.push({
|
375
|
374
|
zone_name: zone.text,
|
376
|
375
|
scheduals: scheduals
|
377
|
|
- });
|
|
376
|
+ })
|
378
|
377
|
}
|
379
|
|
- this.dialysis_scheduals = dialysis_scheduals;
|
|
378
|
+ this.dialysis_scheduals = dialysis_scheduals
|
380
|
379
|
} else {
|
381
|
|
- this.loading = false;
|
|
380
|
+ this.loading = false
|
382
|
381
|
|
383
|
382
|
this.$toast({
|
384
|
383
|
message: resp.msg
|
385
|
|
- });
|
|
384
|
+ })
|
386
|
385
|
}
|
387
|
386
|
})
|
388
|
387
|
.catch(error => {
|
389
|
|
- this.loading = false;
|
|
388
|
+ this.loading = false
|
390
|
389
|
|
391
|
|
- //超时之后在这里捕抓错误信息.
|
|
390
|
+ // 超时之后在这里捕抓错误信息.
|
392
|
391
|
if (error.response) {
|
393
|
|
- this.networkStates = false;
|
|
392
|
+ this.networkStates = false
|
394
|
393
|
|
395
|
|
- console.log("error.response");
|
396
|
|
- console.log(error.response);
|
|
394
|
+ console.log('error.response')
|
|
395
|
+ console.log(error.response)
|
397
|
396
|
} else if (error.request) {
|
398
|
|
- this.networkStates = false;
|
|
397
|
+ this.networkStates = false
|
399
|
398
|
|
400
|
399
|
// if(error.request.readyState == 4 && error.request.status == 0){
|
401
|
400
|
// //我在这里重新请求
|
402
|
401
|
// this.networkStates = false
|
403
|
402
|
// }
|
404
|
403
|
} else {
|
405
|
|
- this.networkStates = false;
|
|
404
|
+ this.networkStates = false
|
406
|
405
|
}
|
407
|
|
- });
|
|
406
|
+ })
|
408
|
407
|
},
|
409
|
|
- openPicker() {
|
410
|
|
- this.$refs.picker.open();
|
|
408
|
+ openPicker () {
|
|
409
|
+ this.$refs.picker.open()
|
411
|
410
|
}
|
|
411
|
+ // getMyPatient () {
|
|
412
|
+ // console.log('这是啥', this.zone_options_visible)
|
|
413
|
+ // console.log('日期', this.selected_date)
|
|
414
|
+ // }
|
412
|
415
|
}
|
413
|
|
-};
|
|
416
|
+}
|
414
|
417
|
</script>
|
415
|
418
|
|
416
|
419
|
<style style="stylesheet/scss" lang="scss" scoped>
|