|
@@ -70,7 +70,8 @@
|
70
|
70
|
:row-class-name="tableRowClassName"
|
71
|
71
|
:span-method="objectSpanMethod"
|
72
|
72
|
:cell-class-name="adviceNameShow"
|
73
|
|
- :modal-append-to-body="false">
|
|
73
|
+ :modal-append-to-body="false"
|
|
74
|
+ v-show="show">
|
74
|
75
|
<el-table-column type="selection" width="55" align="center"></el-table-column>
|
75
|
76
|
<el-table-column prop="date" label="姓名" align="center" min-width="26px">
|
76
|
77
|
<template slot-scope="scope">
|
|
@@ -184,24 +185,127 @@
|
184
|
185
|
<span v-else></span>
|
185
|
186
|
</template>
|
186
|
187
|
</el-table-column>
|
187
|
|
-
|
|
188
|
+ </el-table>
|
|
189
|
+ <el-table :data="scheduleMap" border :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
|
190
|
+ @selection-change="handleSelectionChange"
|
|
191
|
+ :row-class-name="tableRowClassName"
|
|
192
|
+ :span-method="objectSpanMethod"
|
|
193
|
+ :cell-class-name="adviceNameShow"
|
|
194
|
+ :modal-append-to-body="false"
|
|
195
|
+ v-show="showOne">
|
|
196
|
+ <el-table-column type="selection" width="55" align="center"></el-table-column>
|
|
197
|
+ <el-table-column prop="date" label="姓名" align="center" min-width="26px">
|
|
198
|
+ <template slot-scope="scope">
|
|
199
|
+ <span>{{ scope.row.name }}</span>
|
|
200
|
+ <br>
|
|
201
|
+ ({{ scope.row.parent_id == 0 ? scope.row.dialysis_no : ""}})
|
|
202
|
+ <br>
|
|
203
|
+ <span v-if="scope.row.mode_id == 1">(HD)</span>
|
|
204
|
+ <span v-if="scope.row.mode_id == 2">(HDF)</span>
|
|
205
|
+ <span v-if="scope.row.mode_id == 3">(HD+HP)</span>
|
|
206
|
+ <span v-if="scope.row.mode_id == 4">(HP)</span>
|
|
207
|
+ <span v-if="scope.row.mode_id == 5">(HF)</span>
|
|
208
|
+ <span v-if="scope.row.mode_id == 6">(SCUF)</span>
|
|
209
|
+ <span v-if="scope.row.mode_id == 7">(IUF)</span>
|
|
210
|
+ <span v-if="scope.row.mode_id == 8">(HFHD)</span>
|
|
211
|
+ <span v-if="scope.row.mode_id == 9">(HFHD+HP)</span>
|
|
212
|
+ <span v-if="scope.row.mode_id == 10">(PHF)</span>
|
|
213
|
+ <span v-if="scope.row.mode_id == 11">(HFR)</span>
|
|
214
|
+ <span v-if="scope.row.mode_id == 12">(HDF+HP)</span>
|
|
215
|
+ <span v-if="scope.row.mode_id == 13">(CRRT)</span>
|
|
216
|
+ <span v-if="scope.row.mode_id == 14">(腹水回输)</span>
|
|
217
|
+ </template>
|
|
218
|
+ </el-table-column>
|
|
219
|
+ <el-table-column prop="date" label="透析器" align="center" min-width="26px">
|
|
220
|
+ <template slot-scope="scope">
|
|
221
|
+ <span>{{ scope.row.dialyzer_perfusion_apparatus }}</span>
|
|
222
|
+ </template>
|
|
223
|
+ </el-table-column>
|
|
224
|
+ <el-table-column prop="start_time" label="开始时间" align="center" min-width="35px">
|
|
225
|
+ <template slot-scope="scope">
|
|
226
|
+ <span>
|
|
227
|
+ {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
|
|
228
|
+ </span>
|
|
229
|
+ </template>
|
|
230
|
+ </el-table-column>
|
|
231
|
+ <el-table-column prop="advice_name" min-width="50px" label="医嘱内容" align="center">
|
|
232
|
+ <template slot-scope="scope">
|
|
233
|
+ <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
|
|
234
|
+ <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
|
|
235
|
+ {{ getAdviceContent(scope.row, 1)}}
|
|
236
|
+ </span>
|
|
237
|
+ </el-dropdown>
|
188
|
238
|
|
189
|
|
-
|
190
|
|
-
|
191
|
|
- <!-- <el-table-column
|
192
|
|
- v-if="template_id != 6"
|
193
|
|
- prop="checker"
|
194
|
|
- min-width="30px"
|
|
239
|
+ <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
|
|
240
|
+ <span class="el-dropdown-link">
|
|
241
|
+  {{ getAdviceContent(scope.row, 2)}}
|
|
242
|
+ </span>
|
|
243
|
+ </el-dropdown>
|
|
244
|
+ </template>
|
|
245
|
+ </el-table-column>
|
|
246
|
+ <el-table-column
|
|
247
|
+ prop="start_time"
|
195
|
248
|
align="center"
|
196
|
|
- label="核对人员"
|
|
249
|
+ min-width="30px"
|
|
250
|
+ label="执行时间"
|
|
251
|
+ sortable
|
197
|
252
|
>
|
|
253
|
+ <template slot-scope="scope">
|
|
254
|
+ <span v-if="scope.row.execution_time != 0">
|
|
255
|
+ {{scope.row.start_time | parseTime('{m}-{d} {h}:{i}')}}
|
|
256
|
+ </span>
|
|
257
|
+ <span v-else></span>
|
|
258
|
+ </template>
|
|
259
|
+ </el-table-column>
|
|
260
|
+ <el-table-column prop="execution_staff" align="center" min-width="30px" label="执行护士">
|
|
261
|
+ <template slot-scope="scope">
|
|
262
|
+ <span v-if="scope.row.parent_id == 0">
|
|
263
|
+ {{getXuserName(scope.row.execution_staff)}}
|
|
264
|
+ </span>
|
|
265
|
+ <span v-else></span>
|
|
266
|
+ </template>
|
|
267
|
+ </el-table-column>
|
|
268
|
+ <el-table-column prop="checker" align="center" min-width="30px" label="校对护士">
|
198
|
269
|
<template slot-scope="scope">
|
199
|
270
|
<span v-if="scope.row.parent_id == 0">
|
200
|
271
|
{{getXuserName(scope.row.checker)}}
|
201
|
272
|
</span>
|
202
|
273
|
<span v-else></span>
|
203
|
274
|
</template>
|
204
|
|
- </el-table-column> -->
|
|
275
|
+ </el-table-column>
|
|
276
|
+ <el-table-column
|
|
277
|
+ prop="check_time"
|
|
278
|
+ align="center"
|
|
279
|
+ min-width="30px"
|
|
280
|
+ label="校对时间"
|
|
281
|
+ sortable
|
|
282
|
+ >
|
|
283
|
+ <template slot-scope="scope">
|
|
284
|
+ <span v-if="scope.row.check_time != 0">
|
|
285
|
+ {{scope.row.check_time | parseTime('{m}-{d} {h}:{i}')}}
|
|
286
|
+ </span>
|
|
287
|
+ <span v-else></span>
|
|
288
|
+ </template>
|
|
289
|
+ </el-table-column>
|
|
290
|
+ <el-table-column prop="date" label="开嘱医生" align="center" min-width="26px">
|
|
291
|
+ <template slot-scope="scope">
|
|
292
|
+ <span>{{ getXuserName(scope.row.advice_doctor) }}</span>
|
|
293
|
+ </template>
|
|
294
|
+ </el-table-column>
|
|
295
|
+ <el-table-column
|
|
296
|
+ prop="created_time"
|
|
297
|
+ align="center"
|
|
298
|
+ min-width="30px"
|
|
299
|
+ label="校对时间"
|
|
300
|
+ sortable
|
|
301
|
+ >
|
|
302
|
+ <template slot-scope="scope">
|
|
303
|
+ <span v-if="scope.row.created_time != 0">
|
|
304
|
+ {{scope.row.created_time | parseTime('{m}-{d} {h}:{i}')}}
|
|
305
|
+ </span>
|
|
306
|
+ <span v-else></span>
|
|
307
|
+ </template>
|
|
308
|
+ </el-table-column>
|
205
|
309
|
</el-table>
|
206
|
310
|
</div>
|
207
|
311
|
</div>
|
|
@@ -254,7 +358,9 @@ export default {
|
254
|
358
|
selecting_schs: [],
|
255
|
359
|
partitionArr: [],
|
256
|
360
|
|
257
|
|
- scheduleMap:[]
|
|
361
|
+ scheduleMap:[],
|
|
362
|
+ show:true,
|
|
363
|
+ showOne:false,
|
258
|
364
|
};
|
259
|
365
|
},
|
260
|
366
|
created() {
|
|
@@ -338,14 +444,19 @@ export default {
|
338
|
444
|
if (resp.state == 1) {
|
339
|
445
|
this.admin_users = resp.data.adminUser
|
340
|
446
|
var schedules = resp.data.scheduals
|
341
|
|
- // console.log("schedules",schedules)
|
|
447
|
+ console.log("schedules",schedules)
|
|
448
|
+ if(schedules.length > 0){
|
|
449
|
+ this.show = true
|
|
450
|
+ this.showOne = false
|
342
|
451
|
let arr = []
|
343
|
452
|
let newArr = []
|
344
|
453
|
let newSchedules = []
|
345
|
454
|
schedules.map(item => {
|
346
|
|
- item.doctor_advice.map(it =>{
|
347
|
|
- it.name = item.patient.name
|
348
|
|
- it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
|
|
455
|
+ item.doctor_advice.map(it =>{
|
|
456
|
+ it.name = item.patient.name
|
|
457
|
+ if(item.prescription != null){
|
|
458
|
+ it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
|
|
459
|
+ }
|
349
|
460
|
it.schedule_type = item.schedule_type
|
350
|
461
|
it.zoneId = item.device_number.zone.id
|
351
|
462
|
it.dialysis_no = item.patient.dialysis_no
|
|
@@ -389,7 +500,68 @@ export default {
|
389
|
500
|
}
|
390
|
501
|
})
|
391
|
502
|
this.indexInfoList = newArr
|
392
|
|
- }
|
|
503
|
+ }
|
|
504
|
+ if(resp.data.hisAdvices.length > 0){
|
|
505
|
+ this.show = false
|
|
506
|
+ this.showOne = true
|
|
507
|
+ var schedules = resp.data.hisAdvices
|
|
508
|
+
|
|
509
|
+ let arr = []
|
|
510
|
+ let newArr = []
|
|
511
|
+ let newSchedules = []
|
|
512
|
+ schedules.map(item => {
|
|
513
|
+ item.doctor_advice.map(it =>{
|
|
514
|
+ it.name = item.patient.name
|
|
515
|
+ if(item.prescription != null){
|
|
516
|
+ it.dialyzer_perfusion_apparatus = item.prescription.dialyzer_perfusion_apparatus
|
|
517
|
+ }
|
|
518
|
+ it.schedule_type = item.schedule_type
|
|
519
|
+ it.zoneId = item.device_number.zone.id
|
|
520
|
+ it.dialysis_no = item.patient.dialysis_no
|
|
521
|
+ it.mode_id = item.mode_id
|
|
522
|
+ arr.push(it)
|
|
523
|
+ })
|
|
524
|
+ })
|
|
525
|
+ if(this.schedulType == 0){
|
|
526
|
+ newSchedules = arr
|
|
527
|
+ }else{
|
|
528
|
+ arr.map(item => {
|
|
529
|
+ if (item.schedule_type == this.schedulType) {
|
|
530
|
+ newSchedules.push(item)
|
|
531
|
+ }
|
|
532
|
+ })
|
|
533
|
+ }
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+ if(this.partitionType == 0){
|
|
537
|
+ this.scheduleMap = newSchedules
|
|
538
|
+ }else {
|
|
539
|
+ let a = []
|
|
540
|
+ arr.map(item => {
|
|
541
|
+ if(this.partitionType == item.zoneId){
|
|
542
|
+ a.push(item)
|
|
543
|
+ }
|
|
544
|
+ })
|
|
545
|
+ this.scheduleMap = a
|
|
546
|
+ }
|
|
547
|
+ this.scheduleMap.map(ele => {
|
|
548
|
+ let firstIndex = this.scheduleMap.findIndex(item => {
|
|
549
|
+ return item.patient_id === ele.patient_id // 当category相同的时候,返回第一个相同的Index 赋值给 firstIndex
|
|
550
|
+ })
|
|
551
|
+ if (this.scheduleMap.findIndex(item => { return item.patient_id === firstIndex}) === -1) {
|
|
552
|
+ newArr.push({
|
|
553
|
+ length: this.scheduleMap.filter(item => {
|
|
554
|
+ return item.patient_id === ele.patient_id //利用数组的filter方法,过滤出相同category的数组的长度。数组长度-即为跨多少行
|
|
555
|
+ }).length,
|
|
556
|
+ firstIndex: firstIndex // firstIndex 返回的是第一个catergory就满足的第一个Index,即为rowIndex开始于第几行。
|
|
557
|
+ })
|
|
558
|
+ }
|
|
559
|
+ })
|
|
560
|
+ this.indexInfoList = newArr
|
|
561
|
+ }
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+ }
|
393
|
565
|
})
|
394
|
566
|
},
|
395
|
567
|
getValue: function(val) {
|