|
@@ -0,0 +1,878 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="main-contain">
|
|
3
|
+ <div class="position">
|
|
4
|
+ <bread-crumb :crumbs="crumbs"></bread-crumb>
|
|
5
|
+ <el-row style="float:right;">
|
|
6
|
+ <el-col :span="24">
|
|
7
|
+ <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
|
|
8
|
+ </el-col>
|
|
9
|
+ </el-row>
|
|
10
|
+ </div>
|
|
11
|
+ <div class="app-container" style="background-color: white;">
|
|
12
|
+
|
|
13
|
+ <div id="print_content">
|
|
14
|
+ <div class="print_main_content">
|
|
15
|
+ <div class="order_title_panl">
|
|
16
|
+ <span class="main_title">
|
|
17
|
+ {{ org_name }} 治疗签到统计表
|
|
18
|
+ </span>
|
|
19
|
+ <span style="float:left;">打印日期:
|
|
20
|
+ {{ printDate }}
|
|
21
|
+ </span>
|
|
22
|
+ </div>
|
|
23
|
+ <div class="table_panel">
|
|
24
|
+
|
|
25
|
+ <table class="table">
|
|
26
|
+ <thead>
|
|
27
|
+ <tr>
|
|
28
|
+ <td width="20">序号</td>
|
|
29
|
+ <td width="30">透析机</td>
|
|
30
|
+ <td width="60">姓名</td>
|
|
31
|
+ <td width="60">体重(前/后)</td>
|
|
32
|
+ <td width="60">透析模式</td>
|
|
33
|
+ <td width="100">下次透析</td>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+ </tr>
|
|
37
|
+ </thead>
|
|
38
|
+ <tbody>
|
|
39
|
+ <tr v-for="(item,index) in tableDataList">
|
|
40
|
+ <td width="60">{{ index+1 }}</td>
|
|
41
|
+ <td width="60">{{ item.number.number}}</td>
|
|
42
|
+ <td width="60">{{ item.patient }}</td>
|
|
43
|
+ <td width="60"></td>
|
|
44
|
+ <td width="60">{{ getModeName(item.mode_id) }}</td>
|
|
45
|
+ <td width="60">
|
|
46
|
+ <span v-if="getNextScheudle(item.next_schedule)!= 'undefined'">{{ getNextScheudle(item.next_schedule) }}</span>
|
|
47
|
+ </td>
|
|
48
|
+ </tr>
|
|
49
|
+ </tbody>
|
|
50
|
+ </table>
|
|
51
|
+
|
|
52
|
+ </div>
|
|
53
|
+ </div>
|
|
54
|
+ </div>
|
|
55
|
+ </div>
|
|
56
|
+ </div>
|
|
57
|
+ </template>
|
|
58
|
+
|
|
59
|
+ <script>
|
|
60
|
+ import {getSchedulesThree,getWeekPanelsOne,getAllZones} from "@/api/schedule";
|
|
61
|
+ import { parseTime } from '@/utils'
|
|
62
|
+ import { uParseTime } from '@/utils/tools'
|
|
63
|
+ import BreadCrumb from '@/xt_pages/components/bread-crumb'
|
|
64
|
+ import print from 'print-js'
|
|
65
|
+ import { getDataConfig } from '@/utils/data'
|
|
66
|
+ export default {
|
|
67
|
+ name: 'SchedulePrint',
|
|
68
|
+ data() {
|
|
69
|
+ return {
|
|
70
|
+ crumbs: [
|
|
71
|
+ { path: false, name: '排班管理' },
|
|
72
|
+ { path: false, name: '治疗签到' }
|
|
73
|
+ ],
|
|
74
|
+ showflag:sessionStorage.getItem('value1'),
|
|
75
|
+ schedule_type:0,
|
|
76
|
+ partition_id:'',
|
|
77
|
+ theType:2,
|
|
78
|
+ scheduleZone:[],
|
|
79
|
+ weekTitle:[],
|
|
80
|
+ scheduleZoneRow: [],
|
|
81
|
+ partitions: {},
|
|
82
|
+ theWeek: {
|
|
83
|
+ lastWeek: 0,
|
|
84
|
+ thisWeek: 0,
|
|
85
|
+ nextWeek: 0,
|
|
86
|
+ nextTwoWeek: 0
|
|
87
|
+ },
|
|
88
|
+ scheduleCountList:[],
|
|
89
|
+ total:0,
|
|
90
|
+ zones:[],
|
|
91
|
+ zoneIdList:[],
|
|
92
|
+ strArr:"",
|
|
93
|
+ solutionList:[],
|
|
94
|
+ week_date:"",
|
|
95
|
+ Screencasting:false,//投屏
|
|
96
|
+ first_day:0,
|
|
97
|
+ second_day:0,
|
|
98
|
+ three_day:0,
|
|
99
|
+ four_day:0,
|
|
100
|
+ five_day:0,
|
|
101
|
+ six_day:0,
|
|
102
|
+ seven_day:0,
|
|
103
|
+ org_id:0,
|
|
104
|
+ tableDataList:[],
|
|
105
|
+ deviceNumberList:[],
|
|
106
|
+ printDate:"",
|
|
107
|
+ org_name:""
|
|
108
|
+ }
|
|
109
|
+ },
|
|
110
|
+ components: {
|
|
111
|
+ BreadCrumb
|
|
112
|
+ },
|
|
113
|
+ created() {
|
|
114
|
+ this.org_id = this.$store.getters.xt_user.org.id
|
|
115
|
+ var xtuser = this.$store.getters.xt_user;
|
|
116
|
+ this.org_name = xtuser.org.org_name;
|
|
117
|
+ var data = new Date();
|
|
118
|
+ var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
|
|
119
|
+ var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
|
|
120
|
+ this.printDate = data.getFullYear() + "-" + month + "-" + date;
|
|
121
|
+ this.getAllZones()
|
|
122
|
+ this.modeOptions = this.$store.getters.treatment_mode;
|
|
123
|
+ console.log("模式2哦噢",this.modeOptions)
|
|
124
|
+ this.partition_id = this.$route.query.partition_id
|
|
125
|
+ this.schedule_type = this.$route.query.schedule_type
|
|
126
|
+ var newList = []
|
|
127
|
+ var arr = this.$route.query.week_date
|
|
128
|
+
|
|
129
|
+ if(arr!=""){
|
|
130
|
+ var newArr = arr.split(",")
|
|
131
|
+
|
|
132
|
+ if(newArr!=null&&newArr.length > 0){
|
|
133
|
+ for(let i=0;i<newArr.length;i++){
|
|
134
|
+ if(newArr[i] == "周一"){
|
|
135
|
+ newList.push(1)
|
|
136
|
+ this.first_day = 1
|
|
137
|
+ }
|
|
138
|
+ if(newArr[i] == "周二"){
|
|
139
|
+ newList.push(2)
|
|
140
|
+ this.second_day = 2
|
|
141
|
+ }
|
|
142
|
+ if(newArr[i] == "周三"){
|
|
143
|
+ newList.push(3)
|
|
144
|
+ this.three_day = 3
|
|
145
|
+ }
|
|
146
|
+ if(newArr[i] == "周四"){
|
|
147
|
+ newList.push(4)
|
|
148
|
+ this.four_day = 4
|
|
149
|
+ }
|
|
150
|
+ if(newArr[i] == "周五"){
|
|
151
|
+ newList.push(5)
|
|
152
|
+ this.five_day = 5
|
|
153
|
+ }
|
|
154
|
+ if(newArr[i] == "周六"){
|
|
155
|
+ newList.push(6)
|
|
156
|
+ this.six_day = 6
|
|
157
|
+ }
|
|
158
|
+ if(newArr[i] == "周日"){
|
|
159
|
+ newList.push(7)
|
|
160
|
+ this.seven_day = 7
|
|
161
|
+ }
|
|
162
|
+ }
|
|
163
|
+
|
|
164
|
+ this.week_date = newList.join(",")
|
|
165
|
+ }
|
|
166
|
+
|
|
167
|
+ }else{
|
|
168
|
+ newList = [1,2,3,4,5,6,7]
|
|
169
|
+ this.first_day = 1
|
|
170
|
+ this.second_day = 2
|
|
171
|
+ this.three_day = 3
|
|
172
|
+ this.four_day = 4
|
|
173
|
+ this.five_day = 5
|
|
174
|
+ this.six_day = 6
|
|
175
|
+ this.seven_day = 7
|
|
176
|
+ this.week_date = newList.join(",")
|
|
177
|
+
|
|
178
|
+ }
|
|
179
|
+
|
|
180
|
+ },
|
|
181
|
+ methods: {
|
|
182
|
+ getAllZones(){
|
|
183
|
+ getAllZones().then(response=>{
|
|
184
|
+ if(response.data.state == 1){
|
|
185
|
+ var zones = response.data.data.zones
|
|
186
|
+ for(let i=0;i<zones.length;i++){
|
|
187
|
+ this.zoneIdList.push(zones[i].id)
|
|
188
|
+ }
|
|
189
|
+ this.zones.push(...zones)
|
|
190
|
+ var strArr = this.zoneIdList.join(",")
|
|
191
|
+
|
|
192
|
+ this.strArr = strArr
|
|
193
|
+ this.deviceNumberList= response.data.data.devicenumber
|
|
194
|
+ this.getWeekPanels()
|
|
195
|
+
|
|
196
|
+ }
|
|
197
|
+ })
|
|
198
|
+ },
|
|
199
|
+ getTimeOne(val) {
|
|
200
|
+ if(val == ""){
|
|
201
|
+ return ""
|
|
202
|
+ }else {
|
|
203
|
+ return uParseTime(val, '{y}-{m}-{d}')
|
|
204
|
+ }
|
|
205
|
+ },
|
|
206
|
+ printAction: function() {
|
|
207
|
+ if(this.org_id != 10490 && this.org_id != 0){
|
|
208
|
+ const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 0px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 0px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
209
|
+ printJS({
|
|
210
|
+ printable: 'print_content',
|
|
211
|
+ type: 'html',
|
|
212
|
+ documentTitle: ' ',
|
|
213
|
+ style: style,
|
|
214
|
+ scanStyles: false
|
|
215
|
+ })
|
|
216
|
+ }else{
|
|
217
|
+ // const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 0px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 0px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
218
|
+ const style = '@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 20px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 18px; padding: 10px 5px; } .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
|
|
219
|
+ printJS({
|
|
220
|
+ printable: 'print_content',
|
|
221
|
+ type: 'html',
|
|
222
|
+ documentTitle: ' ',
|
|
223
|
+ style: style,
|
|
224
|
+ scanStyles: false
|
|
225
|
+ })
|
|
226
|
+ }
|
|
227
|
+
|
|
228
|
+ },
|
|
229
|
+ getAnticoagualnt(id){
|
|
230
|
+ var name = ""
|
|
231
|
+ if(id == 1){
|
|
232
|
+ name = "无肝素"
|
|
233
|
+ }
|
|
234
|
+ if(id == 2){
|
|
235
|
+ name = "普通肝素"
|
|
236
|
+ }
|
|
237
|
+ if(id == 3){
|
|
238
|
+ name ="低分子肝素"
|
|
239
|
+ }
|
|
240
|
+ if(id == 4){
|
|
241
|
+ name ="阿加曲班"
|
|
242
|
+ }
|
|
243
|
+ if(id == 5){
|
|
244
|
+ name ="枸橼酸钠"
|
|
245
|
+ }
|
|
246
|
+ if(id == 6){
|
|
247
|
+ name ="低分子肝素钙"
|
|
248
|
+ }
|
|
249
|
+ if(id == 7){
|
|
250
|
+ name ="低分子肝素钠"
|
|
251
|
+ }
|
|
252
|
+ if(id == 8){
|
|
253
|
+ name ="依诺肝素"
|
|
254
|
+ }
|
|
255
|
+ if(id == 9){
|
|
256
|
+ name ="达肝素"
|
|
257
|
+ }
|
|
258
|
+ if(id == 10){
|
|
259
|
+ name ="体外抗凝"
|
|
260
|
+ }
|
|
261
|
+ if(id == 11){
|
|
262
|
+ name ="那屈肝素"
|
|
263
|
+ }
|
|
264
|
+ if(id == 12){
|
|
265
|
+ name ="无抗凝剂"
|
|
266
|
+ }
|
|
267
|
+ if(id == 13){
|
|
268
|
+ name ="那屈肝素钙"
|
|
269
|
+ }
|
|
270
|
+ return name
|
|
271
|
+ },
|
|
272
|
+ getBloodAccessOption(id){
|
|
273
|
+ var name = ""
|
|
274
|
+ for(let i=0;i<this.blood_access_option.length;i++){
|
|
275
|
+ if(id == this.blood_access_option[i].id){
|
|
276
|
+ name = this.blood_access_option[i].name
|
|
277
|
+ }
|
|
278
|
+ }
|
|
279
|
+ return name
|
|
280
|
+ },
|
|
281
|
+ getDisplaceLiquiPart(id){
|
|
282
|
+ var name = ""
|
|
283
|
+ for(let i=0;i<this.displace_liqui_part_option.length;i++){
|
|
284
|
+ if(id == this.displace_liqui_part_option[i].id){
|
|
285
|
+ name = this.displace_liqui_part_option[i].name
|
|
286
|
+ }
|
|
287
|
+ }
|
|
288
|
+ return name
|
|
289
|
+ },
|
|
290
|
+ compare(p) { //这是比较函数
|
|
291
|
+ return function (m, n) {
|
|
292
|
+ var a = m[p];
|
|
293
|
+ var b = n[p];
|
|
294
|
+ return a - b; //升序
|
|
295
|
+ }
|
|
296
|
+ },
|
|
297
|
+ getWeekPanels() {
|
|
298
|
+ this.scheduleZone = []
|
|
299
|
+ var partionStr = this.partition_id
|
|
300
|
+ var arr = this.zoneIdList.join(',')
|
|
301
|
+ var str = ""
|
|
302
|
+ if(partionStr == 0){
|
|
303
|
+ str = arr
|
|
304
|
+ }
|
|
305
|
+ if(partionStr != 0){
|
|
306
|
+ str = partionStr
|
|
307
|
+ }
|
|
308
|
+ getWeekPanelsOne(1,str).then(response => {
|
|
309
|
+ if (response.data.state == 0) {
|
|
310
|
+ return false
|
|
311
|
+ }
|
|
312
|
+ var partitions = response.data.data.partitions
|
|
313
|
+ console.log("分区",partitions)
|
|
314
|
+ this.theWeek.thisWeek = response.data.data.theWeek
|
|
315
|
+ this.theWeek.lastWeek = this.theWeek.thisWeek - 1
|
|
316
|
+ this.theWeek.nextWeek = this.theWeek.thisWeek + 1
|
|
317
|
+ this.theWeek.nextTwoWeek = this.theWeek.thisWeek + 2
|
|
318
|
+ var that = this
|
|
319
|
+ if (partitions.length > 0) {
|
|
320
|
+
|
|
321
|
+ partitions.forEach(function(partition) {
|
|
322
|
+ if (partition.jihaos.length == 0) {
|
|
323
|
+ return false
|
|
324
|
+ }
|
|
325
|
+ that.scheduleZoneRow.push(partition.jihaos.length)
|
|
326
|
+ that.partitions[partition.id] = partition
|
|
327
|
+ partition.jihaos.forEach(function(jihao) {
|
|
328
|
+ var thisPa = {
|
|
329
|
+ area: partition.name,
|
|
330
|
+ zone_id: partition.id,
|
|
331
|
+ zone_type: partition.type,
|
|
332
|
+ cut: jihao.number,
|
|
333
|
+ jihao_id: jihao.id,
|
|
334
|
+ sort:jihao.sort,
|
|
335
|
+ Mon_M: {
|
|
336
|
+ schedule_id: 0,
|
|
337
|
+ mode_id: 0,
|
|
338
|
+ mode_name: '',
|
|
339
|
+ patient_id: 0,
|
|
340
|
+ patient: '',
|
|
341
|
+ type:1,
|
|
342
|
+ dialysis_machine_name:"",
|
|
343
|
+ anticoagulant:"",
|
|
344
|
+ },
|
|
345
|
+ Mon_A: {
|
|
346
|
+ schedule_id: 0,
|
|
347
|
+ mode_id: 0,
|
|
348
|
+ mode_name: '',
|
|
349
|
+ patient_id: 0,
|
|
350
|
+ patient: '',
|
|
351
|
+ type:1,
|
|
352
|
+ dialysis_machine_name:"",
|
|
353
|
+ anticoagulant:""
|
|
354
|
+
|
|
355
|
+ },
|
|
356
|
+ Mon_N: {
|
|
357
|
+ schedule_id: 0,
|
|
358
|
+ mode_id: 0,
|
|
359
|
+ mode_name: '',
|
|
360
|
+ patient_id: 0,
|
|
361
|
+ patient: '',
|
|
362
|
+ type:1,
|
|
363
|
+ dialysis_machine_name:"",
|
|
364
|
+ anticoagulant:""
|
|
365
|
+
|
|
366
|
+ },
|
|
367
|
+ Tue_M: {
|
|
368
|
+ schedule_id: 0,
|
|
369
|
+ mode_id: 0,
|
|
370
|
+ mode_name: '',
|
|
371
|
+ patient_id: 0,
|
|
372
|
+ patient: '',
|
|
373
|
+ type:1,
|
|
374
|
+ dialysis_machine_name:"",
|
|
375
|
+ anticoagulant:""
|
|
376
|
+
|
|
377
|
+ },
|
|
378
|
+ Tue_A: {
|
|
379
|
+ schedule_id: 0,
|
|
380
|
+ mode_id: 0,
|
|
381
|
+ mode_name: '',
|
|
382
|
+ patient_id: 0,
|
|
383
|
+ patient: '',
|
|
384
|
+ type:1,
|
|
385
|
+ dialysis_machine_name:"",
|
|
386
|
+ anticoagulant:""
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+ },
|
|
390
|
+ Tue_N: {
|
|
391
|
+ schedule_id: 0,
|
|
392
|
+ mode_id: 0,
|
|
393
|
+ mode_name: '',
|
|
394
|
+ patient_id: 0,
|
|
395
|
+ patient: '',
|
|
396
|
+ type:1,
|
|
397
|
+ dialysis_machine_name:"",
|
|
398
|
+ anticoagulant:""
|
|
399
|
+
|
|
400
|
+ },
|
|
401
|
+ Wed_M: {
|
|
402
|
+ schedule_id: 0,
|
|
403
|
+ mode_id: 0,
|
|
404
|
+ mode_name: '',
|
|
405
|
+ patient_id: 0,
|
|
406
|
+ patient: '',
|
|
407
|
+ type:1,
|
|
408
|
+ dialysis_machine_name:"",
|
|
409
|
+ anticoagulant:""
|
|
410
|
+
|
|
411
|
+ },
|
|
412
|
+ Wed_A: {
|
|
413
|
+ schedule_id: 0,
|
|
414
|
+ mode_id: 0,
|
|
415
|
+ mode_name: '',
|
|
416
|
+ patient_id: 0,
|
|
417
|
+ patient: '',
|
|
418
|
+ type:1,
|
|
419
|
+ dialysis_machine_name:"",
|
|
420
|
+ anticoagulant:""
|
|
421
|
+
|
|
422
|
+ },
|
|
423
|
+ Wed_N: {
|
|
424
|
+ schedule_id: 0,
|
|
425
|
+ mode_id: 0,
|
|
426
|
+ mode_name: '',
|
|
427
|
+ patient_id: 0,
|
|
428
|
+ patient: '',
|
|
429
|
+ type:1,
|
|
430
|
+ dialysis_machine_name:"",
|
|
431
|
+ anticoagulant:""
|
|
432
|
+
|
|
433
|
+ },
|
|
434
|
+ Thurs_M: {
|
|
435
|
+ schedule_id: 0,
|
|
436
|
+ mode_id: 0,
|
|
437
|
+ mode_name: '',
|
|
438
|
+ patient_id: 0,
|
|
439
|
+ patient: '',
|
|
440
|
+ type:1,
|
|
441
|
+ dialysis_machine_name:"",
|
|
442
|
+ anticoagulant:""
|
|
443
|
+
|
|
444
|
+ },
|
|
445
|
+ Thurs_A: {
|
|
446
|
+ schedule_id: 0,
|
|
447
|
+ mode_id: 0,
|
|
448
|
+ mode_name: '',
|
|
449
|
+ patient_id: 0,
|
|
450
|
+ patient: '',
|
|
451
|
+ type:1,
|
|
452
|
+ dialysis_machine_name:"",
|
|
453
|
+ anticoagulant:""
|
|
454
|
+
|
|
455
|
+ },
|
|
456
|
+ Thurs_N: {
|
|
457
|
+ schedule_id: 0,
|
|
458
|
+ mode_id: 0,
|
|
459
|
+ mode_name: '',
|
|
460
|
+ patient_id: 0,
|
|
461
|
+ patient: '',
|
|
462
|
+ type:1,
|
|
463
|
+ dialysis_machine_name:"",
|
|
464
|
+ anticoagulant:""
|
|
465
|
+
|
|
466
|
+ },
|
|
467
|
+ Fri_M: {
|
|
468
|
+ schedule_id: 0,
|
|
469
|
+ mode_id: 0,
|
|
470
|
+ mode_name: '',
|
|
471
|
+ patient_id: 0,
|
|
472
|
+ patient: '',
|
|
473
|
+ type:1,
|
|
474
|
+ dialysis_machine_name:"",
|
|
475
|
+ anticoagulant:""
|
|
476
|
+
|
|
477
|
+ },
|
|
478
|
+ Fri_A: {
|
|
479
|
+ schedule_id: 0,
|
|
480
|
+ mode_id: 0,
|
|
481
|
+ mode_name: '',
|
|
482
|
+ patient_id: 0,
|
|
483
|
+ patient: '',
|
|
484
|
+ type:1,
|
|
485
|
+ dialysis_machine_name:"",
|
|
486
|
+ anticoagulant:""
|
|
487
|
+
|
|
488
|
+ },
|
|
489
|
+ Fri_N: {
|
|
490
|
+ schedule_id: 0,
|
|
491
|
+ mode_id: 0,
|
|
492
|
+ mode_name: '',
|
|
493
|
+ patient_id: 0,
|
|
494
|
+ patient: '',
|
|
495
|
+ type:1,
|
|
496
|
+ dialysis_machine_name:"",
|
|
497
|
+ anticoagulant:""
|
|
498
|
+
|
|
499
|
+ },
|
|
500
|
+ Sat_M: {
|
|
501
|
+ schedule_id: 0,
|
|
502
|
+ mode_id: 0,
|
|
503
|
+ mode_name: '',
|
|
504
|
+ patient_id: 0,
|
|
505
|
+ patient: '',
|
|
506
|
+ type:1,
|
|
507
|
+ dialysis_machine_name:"",
|
|
508
|
+ anticoagulant:""
|
|
509
|
+
|
|
510
|
+ },
|
|
511
|
+ Sat_A: {
|
|
512
|
+ schedule_id: 0,
|
|
513
|
+ mode_id: 0,
|
|
514
|
+ mode_name: '',
|
|
515
|
+ patient_id: 0,
|
|
516
|
+ patient: '',
|
|
517
|
+ type:1,
|
|
518
|
+ dialysis_machine_name:"",
|
|
519
|
+ anticoagulant:""
|
|
520
|
+
|
|
521
|
+ },
|
|
522
|
+ Sat_N: {
|
|
523
|
+ schedule_id: 0,
|
|
524
|
+ mode_id: 0,
|
|
525
|
+ mode_name: '',
|
|
526
|
+ patient_id: 0,
|
|
527
|
+ patient: '',
|
|
528
|
+ type:1,
|
|
529
|
+ dialysis_machine_name:"",
|
|
530
|
+ anticoagulant:""
|
|
531
|
+
|
|
532
|
+ },
|
|
533
|
+ Sun_A: {
|
|
534
|
+ schedule_id: 0,
|
|
535
|
+ mode_id: 0,
|
|
536
|
+ mode_name: '',
|
|
537
|
+ patient_id: 0,
|
|
538
|
+ patient: '',
|
|
539
|
+ type:1,
|
|
540
|
+ dialysis_machine_name:"",
|
|
541
|
+ anticoagulant:""
|
|
542
|
+
|
|
543
|
+ },
|
|
544
|
+ Sun_N: {
|
|
545
|
+ schedule_id: 0,
|
|
546
|
+ mode_id: 0,
|
|
547
|
+ mode_name: '',
|
|
548
|
+ patient_id: 0,
|
|
549
|
+ patient: '',
|
|
550
|
+ type:1,
|
|
551
|
+ dialysis_machine_name:"",
|
|
552
|
+ anticoagulant:""
|
|
553
|
+
|
|
554
|
+ },
|
|
555
|
+ Sun_M: {
|
|
556
|
+ schedule_id: 0,
|
|
557
|
+ mode_id: 0,
|
|
558
|
+ mode_name: '',
|
|
559
|
+ patient_id: 0,
|
|
560
|
+ patient: '',
|
|
561
|
+ type:1,
|
|
562
|
+ dialysis_machine_name:"",
|
|
563
|
+ anticoagulant:""
|
|
564
|
+
|
|
565
|
+ },
|
|
566
|
+ total: 0
|
|
567
|
+ }
|
|
568
|
+ that.scheduleZone.push(thisPa)
|
|
569
|
+
|
|
570
|
+ })
|
|
571
|
+ })
|
|
572
|
+ }
|
|
573
|
+ this.scheduleZone.sort(this.compare('sort'))
|
|
574
|
+
|
|
575
|
+ this.getSchedules()
|
|
576
|
+ })
|
|
577
|
+ },
|
|
578
|
+ weekPath(week, schedule_type) {
|
|
579
|
+ var weekArr = {
|
|
580
|
+ 1: "Mon",
|
|
581
|
+ 2: "Tue",
|
|
582
|
+ 3: "Wed",
|
|
583
|
+ 4: "Thurs",
|
|
584
|
+ 5: "Fri",
|
|
585
|
+ 6: "Sat",
|
|
586
|
+ 7: "Sun"
|
|
587
|
+ };
|
|
588
|
+ var typeArr = { 1: "M", 2: "A", 3: "N" };
|
|
589
|
+ if (
|
|
590
|
+ typeof weekArr[week] === "undefined" ||
|
|
591
|
+ typeof typeArr[schedule_type] === "undefined"
|
|
592
|
+ ) {
|
|
593
|
+ return [];
|
|
594
|
+ }
|
|
595
|
+ return [weekArr[week], typeArr[schedule_type]];
|
|
596
|
+ },
|
|
597
|
+ getSchedules() {
|
|
598
|
+ var theType = 2;
|
|
599
|
+ if(this.$route.query.weekTime == "lastWeek"){
|
|
600
|
+ theType = 1
|
|
601
|
+ }
|
|
602
|
+ if(this.$route.query.weekTime == "thisWeek"){
|
|
603
|
+ theType = 2
|
|
604
|
+ }
|
|
605
|
+ if(this.$route.query.weekTime == "nextWeek"){
|
|
606
|
+ theType = 3
|
|
607
|
+ }
|
|
608
|
+ if(this.$route.query.weekTime == "nextTwoWeek"){
|
|
609
|
+ theType = 4
|
|
610
|
+ }
|
|
611
|
+ var partionStr = this.partition_id
|
|
612
|
+ var arr = this.zoneIdList.join(',')
|
|
613
|
+ var str = ""
|
|
614
|
+ if(partionStr == 0){
|
|
615
|
+ str = arr
|
|
616
|
+ }
|
|
617
|
+ if(partionStr != 0){
|
|
618
|
+ str = partionStr
|
|
619
|
+ }
|
|
620
|
+ const params = {
|
|
621
|
+ weekTime:theType,
|
|
622
|
+ patitionid:str,
|
|
623
|
+ schedule_type:this.schedule_type,
|
|
624
|
+ week_date:this.week_date,
|
|
625
|
+ }
|
|
626
|
+ getSchedulesThree(params).then(response => {
|
|
627
|
+ if (response.data.state == 1) {
|
|
628
|
+ this.weekTitle = response.data.data.weekTitle;
|
|
629
|
+ console.log("weekTitle99923232",this.weekTitle)
|
|
630
|
+ this.weekDays = response.data.data.days;
|
|
631
|
+ this.toDay = response.data.data.today;
|
|
632
|
+ var theSchedules = response.data.data.schdules;
|
|
633
|
+ console.log("theSchedules",theSchedules)
|
|
634
|
+ if(theSchedules!=null){
|
|
635
|
+ for(let i=0;i<theSchedules.length;i++){
|
|
636
|
+ theSchedules[i].sort = 0
|
|
637
|
+ theSchedules[i].sort = theSchedules[i].number.sort
|
|
638
|
+ }
|
|
639
|
+ }
|
|
640
|
+ this.tableDataList = theSchedules.sort(this.compare('sort'))
|
|
641
|
+ } else {
|
|
642
|
+ this.$message.error("网络错误");
|
|
643
|
+ return false;
|
|
644
|
+ }
|
|
645
|
+ });
|
|
646
|
+ },
|
|
647
|
+
|
|
648
|
+ getBedNumber(id){
|
|
649
|
+ var number = ""
|
|
650
|
+ for(let i=0;i<this.deviceNumberList.length;i++){
|
|
651
|
+ if(id == this.deviceNumberList[i].id){
|
|
652
|
+ number =this.deviceNumberList[i].number
|
|
653
|
+ }
|
|
654
|
+ }
|
|
655
|
+ return number
|
|
656
|
+ },
|
|
657
|
+ getModeName(id){
|
|
658
|
+ var name = ""
|
|
659
|
+ if(id == 1){
|
|
660
|
+ name = "HD"
|
|
661
|
+ }
|
|
662
|
+ if(id == 2){
|
|
663
|
+ name = "HDF"
|
|
664
|
+ }
|
|
665
|
+ if(id == 3){
|
|
666
|
+ name = "HD+HP"
|
|
667
|
+ }
|
|
668
|
+ if(id == 4){
|
|
669
|
+ name = "HP"
|
|
670
|
+ }
|
|
671
|
+ if(id == 5){
|
|
672
|
+ name = "HF"
|
|
673
|
+ }
|
|
674
|
+ if(id == 6){
|
|
675
|
+ name = "SCUF"
|
|
676
|
+ }
|
|
677
|
+ if(id == 7){
|
|
678
|
+ name = "IUF"
|
|
679
|
+ }
|
|
680
|
+ if(id == 8){
|
|
681
|
+ name = "HFHD"
|
|
682
|
+ }
|
|
683
|
+ if(id == 9){
|
|
684
|
+ name = "HFHD+HP"
|
|
685
|
+ }
|
|
686
|
+ if(id == 10){
|
|
687
|
+ name = "PHF"
|
|
688
|
+ }
|
|
689
|
+ if(id == 11){
|
|
690
|
+ name = "HFR"
|
|
691
|
+ }
|
|
692
|
+ if(id == 12){
|
|
693
|
+ name = "HDF+HP"
|
|
694
|
+ }
|
|
695
|
+ if(id == 13){
|
|
696
|
+ name = "CRRT"
|
|
697
|
+ }
|
|
698
|
+ if(id == 14){
|
|
699
|
+ name = "腹水回输"
|
|
700
|
+ }
|
|
701
|
+ if(id == 19){
|
|
702
|
+ name = "IUF+HD"
|
|
703
|
+ }
|
|
704
|
+ if(id == 20){
|
|
705
|
+ name = "UF"
|
|
706
|
+ }
|
|
707
|
+ if(id == 21){
|
|
708
|
+ name = "HD+"
|
|
709
|
+ }
|
|
710
|
+ if(id == 22){
|
|
711
|
+ name = "血浆胆红素吸附+HDF"
|
|
712
|
+ }
|
|
713
|
+ if(id == 23){
|
|
714
|
+ name = "血浆胆红素吸附"
|
|
715
|
+ }
|
|
716
|
+ if(id == 24){
|
|
717
|
+ name = "I-HDF"
|
|
718
|
+ }
|
|
719
|
+ if(id == 25){
|
|
720
|
+ name = "HD高通"
|
|
721
|
+ }
|
|
722
|
+ if(id == 26){
|
|
723
|
+ name = "CVVH"
|
|
724
|
+ }
|
|
725
|
+ if(id == 27){
|
|
726
|
+ name = "CVVHD"
|
|
727
|
+ }
|
|
728
|
+ if(id == 28){
|
|
729
|
+ name = "CVVHDF"
|
|
730
|
+ }
|
|
731
|
+ if(id == 29){
|
|
732
|
+ name = "PE"
|
|
733
|
+ }
|
|
734
|
+ if(id == 30){
|
|
735
|
+ name = "血浆胆红素吸附+HP"
|
|
736
|
+ }
|
|
737
|
+ if(id == 31){
|
|
738
|
+ name = "HPD"
|
|
739
|
+ }
|
|
740
|
+ if(id == 32){
|
|
741
|
+ name = "HDP"
|
|
742
|
+ }
|
|
743
|
+ if(id == 33){
|
|
744
|
+ name = "HFD"
|
|
745
|
+ }
|
|
746
|
+ if(id == 33){
|
|
747
|
+ name = "HFD"
|
|
748
|
+ }
|
|
749
|
+ if(id == 34){
|
|
750
|
+ name = "HDF100"
|
|
751
|
+ }
|
|
752
|
+ if(id == 35){
|
|
753
|
+ name = "HDF600"
|
|
754
|
+ }
|
|
755
|
+ if(id == 36){
|
|
756
|
+ name = "HDF800"
|
|
757
|
+ }
|
|
758
|
+ if(id == 37){
|
|
759
|
+ name = "HDF1000"
|
|
760
|
+ }
|
|
761
|
+ return name
|
|
762
|
+ },
|
|
763
|
+ getNextScheudle(val){
|
|
764
|
+ var str =""
|
|
765
|
+ if(val.id >0){
|
|
766
|
+ str= this.getTimeOne(val.schedule_date) + " " + this.getClasstType(val.schedule_type) + " " + this.getModeName(val.mode_id)
|
|
767
|
+ }else{
|
|
768
|
+ return ""
|
|
769
|
+ }
|
|
770
|
+ console.log("val23320320302230",str)
|
|
771
|
+ if(str == "undefined"){
|
|
772
|
+ return ""
|
|
773
|
+ }else{
|
|
774
|
+ return str
|
|
775
|
+ }
|
|
776
|
+
|
|
777
|
+ },
|
|
778
|
+ getClasstType(type){
|
|
779
|
+ if(type ==1){
|
|
780
|
+ return "上午"
|
|
781
|
+ }
|
|
782
|
+ if(type ==2){
|
|
783
|
+ return "下午"
|
|
784
|
+ }
|
|
785
|
+ if(type ==3){
|
|
786
|
+ return "晚上"
|
|
787
|
+ }
|
|
788
|
+ },
|
|
789
|
+ compare (property) {
|
|
790
|
+ return function (a, b) {
|
|
791
|
+ var value1 = a[property]
|
|
792
|
+ var value2 = b[property]
|
|
793
|
+ return value1 - value2
|
|
794
|
+ }
|
|
795
|
+ },
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+ }
|
|
799
|
+ }
|
|
800
|
+ </script>
|
|
801
|
+
|
|
802
|
+ <style rel="stylesheet/scss" lang="scss" scoped>
|
|
803
|
+ .print_main_content {
|
|
804
|
+ background-color: white;
|
|
805
|
+ width: 960px;
|
|
806
|
+ margin: 0 auto;
|
|
807
|
+ padding: 0 0 20px 0;
|
|
808
|
+
|
|
809
|
+ .order_title_panl {
|
|
810
|
+ text-align: center;
|
|
811
|
+
|
|
812
|
+ .main_title {
|
|
813
|
+ font-size: 18px;
|
|
814
|
+ line-height: 40px;
|
|
815
|
+ font-weight: 500;
|
|
816
|
+ }
|
|
817
|
+
|
|
818
|
+ }
|
|
819
|
+ .table_panel {
|
|
820
|
+
|
|
821
|
+ .table {
|
|
822
|
+ width: 100%;
|
|
823
|
+ border: 1px solid;
|
|
824
|
+ border-collapse: collapse;
|
|
825
|
+ padding: 2px;
|
|
826
|
+
|
|
827
|
+ thead {
|
|
828
|
+
|
|
829
|
+ tr {
|
|
830
|
+
|
|
831
|
+ td {
|
|
832
|
+ border: 1px solid;
|
|
833
|
+ text-align: center;
|
|
834
|
+ font-size: 20px;
|
|
835
|
+ padding: 15px 5px;
|
|
836
|
+ }
|
|
837
|
+
|
|
838
|
+ }
|
|
839
|
+ }
|
|
840
|
+ tbody {
|
|
841
|
+
|
|
842
|
+ tr {
|
|
843
|
+
|
|
844
|
+ td {
|
|
845
|
+ border: 1px solid;
|
|
846
|
+ text-align: center;
|
|
847
|
+ font-size: 18px;
|
|
848
|
+ padding: 10px 5px;
|
|
849
|
+
|
|
850
|
+ .proj {
|
|
851
|
+ padding: 5px 0;
|
|
852
|
+ text-align: left;
|
|
853
|
+
|
|
854
|
+ .proj_title {
|
|
855
|
+ font-size: 16px;
|
|
856
|
+ font-weight: 500;
|
|
857
|
+ line-height: 25px;
|
|
858
|
+ }
|
|
859
|
+
|
|
860
|
+ .proj_item {
|
|
861
|
+ font-size: 15px;
|
|
862
|
+ line-height: 20px;
|
|
863
|
+
|
|
864
|
+ .zone_name {
|
|
865
|
+ font-weight: 500;
|
|
866
|
+ }
|
|
867
|
+
|
|
868
|
+ }
|
|
869
|
+ }
|
|
870
|
+ }
|
|
871
|
+ }
|
|
872
|
+ }
|
|
873
|
+ }
|
|
874
|
+ }
|
|
875
|
+ }
|
|
876
|
+ </style>
|
|
877
|
+
|
|
878
|
+
|