|
@@ -16,7 +16,7 @@
|
16
|
16
|
|
17
|
17
|
<view class="body_item_content">
|
18
|
18
|
<view class="body_item_content_p">
|
19
|
|
- <text class="name ellipsis" v-if="data.repairIncidentType.value === 'dept'">报修科室:{{data.department.dept}}</text>
|
|
19
|
+ <text class="name ellipsis" v-if="data.repairIncidentType.value === 'dept'">报修科室:{{data.department?data.department.dept:''}}</text>
|
20
|
20
|
<text class="name ellipsis" v-if="data.repairIncidentType.value === 'public'">报修类型:{{data.repairIncidentType.name}}</text>
|
21
|
21
|
<view class="status" :style="stateStyle(data.state)">{{data.state ? data.state.name : ''}}</view>
|
22
|
22
|
</view>
|
|
@@ -104,7 +104,7 @@
|
104
|
104
|
|
105
|
105
|
const assignFlag = ref(false);//指派权限
|
106
|
106
|
const qiangdan = ref(false);//接单权限
|
107
|
|
-
|
|
107
|
+ const showDept = ref(false);//跨科权限
|
108
|
108
|
// 判断是否显示接单按钮
|
109
|
109
|
const computedReceive = computed(() => (data) => {
|
110
|
110
|
let inUser = data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id;
|
|
@@ -145,6 +145,7 @@
|
145
|
145
|
area: {id: 0, area: '全部'},
|
146
|
146
|
category: {id: 0, category: '全部'},
|
147
|
147
|
acceptDate: [],
|
|
148
|
+ dept: {text: '全部', value: 0},
|
148
|
149
|
},//筛选框数据
|
149
|
150
|
})
|
150
|
151
|
|
|
@@ -305,23 +306,50 @@
|
305
|
306
|
let hospital = loginUserStore.loginUser.user.currentHospital?
|
306
|
307
|
loginUserStore.loginUser.user.currentHospital:
|
307
|
308
|
loginUserStore.loginUser.hospital[0]
|
308
|
|
- if(postData.incident.queryTask === 'all' || postData.incident.queryTask === 'callback'){
|
309
|
|
- if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
|
310
|
|
- postData.incident.duty = hospital;
|
311
|
|
- }else{ // 当前是院区
|
312
|
|
- postData.incident.hosId = hospital.id;
|
313
|
|
- }
|
314
|
|
- }else{
|
315
|
|
- delete postData.incident.duty;
|
316
|
|
- delete postData.incident.hosId;
|
317
|
|
- }
|
318
|
|
-
|
319
|
|
- if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
|
320
|
|
- if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
|
321
|
|
- let infoPermission = loginUserStore.loginUser.infoPermission
|
322
|
|
- let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.deptValue.value)
|
323
|
|
- postData.incident.duty = itemDept;
|
324
|
|
- delete postData.incident.hosId;
|
|
309
|
+ // if(postData.incident.queryTask === 'all' || postData.incident.queryTask === 'callback'){
|
|
310
|
+ // if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
|
|
311
|
+ // postData.incident.duty = hospital;
|
|
312
|
+ // }else{ // 当前是院区
|
|
313
|
+ // postData.incident.hosId = hospital.id;
|
|
314
|
+ // }
|
|
315
|
+ // }else{
|
|
316
|
+ // delete postData.incident.duty;
|
|
317
|
+ // delete postData.incident.hosId;
|
|
318
|
+ // }
|
|
319
|
+
|
|
320
|
+ // if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
|
|
321
|
+ // if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
|
|
322
|
+ // let infoPermission = loginUserStore.loginUser.infoPermission
|
|
323
|
+ // let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.deptValue.value)
|
|
324
|
+ // postData.incident.duty = itemDept;
|
|
325
|
+ // delete postData.incident.hosId;
|
|
326
|
+ // }
|
|
327
|
+ // }
|
|
328
|
+
|
|
329
|
+ if(postData.incident.queryTask != 'todoingAll'){
|
|
330
|
+ if(showDept.value){
|
|
331
|
+ if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
|
|
332
|
+ let infoPermission = loginUserStore.loginUser.infoPermission
|
|
333
|
+ let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.deptValue.value)
|
|
334
|
+ postData.incident.duty = itemDept;
|
|
335
|
+ delete postData.incident.hosId;
|
|
336
|
+ }else{
|
|
337
|
+ if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
|
|
338
|
+ postData.incident.duty = hospital;
|
|
339
|
+ delete postData.incident.hosId
|
|
340
|
+ }else{ // 当前是院区
|
|
341
|
+ postData.incident.hosId = hospital.id;
|
|
342
|
+ delete postData.incident.duty
|
|
343
|
+ }
|
|
344
|
+ }
|
|
345
|
+ }else{
|
|
346
|
+ if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
|
|
347
|
+ postData.incident.duty = hospital;
|
|
348
|
+ delete postData.incident.hosId
|
|
349
|
+ }else{ // 当前是院区
|
|
350
|
+ postData.incident.hosId = hospital.id;
|
|
351
|
+ delete postData.incident.duty
|
|
352
|
+ }
|
325
|
353
|
}
|
326
|
354
|
}
|
327
|
355
|
|
|
@@ -353,6 +381,7 @@
|
353
|
381
|
uni.hideLoading();
|
354
|
382
|
uni.stopPullDownRefresh();
|
355
|
383
|
if(res.status == 200){
|
|
384
|
+ console.log(6666,incidentListSearchStore.incidentListSearch.data)
|
356
|
385
|
let list = res.list || [];
|
357
|
386
|
if(list.length){
|
358
|
387
|
dataInfo.hasMore = true;
|
|
@@ -399,25 +428,38 @@
|
399
|
428
|
// 初始化
|
400
|
429
|
function onLoadFn(){
|
401
|
430
|
// 我的-数量跳转
|
|
431
|
+ let storeData = incidentListSearchStore.incidentListSearch.data
|
|
432
|
+ let hospital = loginUserStore.loginUser.user.currentHospital
|
402
|
433
|
if(incidentNumStore.incidentNum.data){
|
|
434
|
+ console.log(111)
|
403
|
435
|
dataInfo.evtFilter.selected = incidentNumStore.incidentNum.data.queryTask;
|
404
|
436
|
dataInfo.tabActiveId = incidentNumStore.incidentNum.data.statusId;
|
405
|
437
|
incidentNumStore.clearIncidentNumData();
|
406
|
|
- }else if(incidentListSearchStore.incidentListSearch.data){
|
407
|
|
- // 缓存的搜索条件
|
408
|
|
- Object.assign(dataInfo, incidentListSearchStore.incidentListSearch.data);
|
409
|
|
- }
|
|
438
|
+ }else if(storeData){
|
|
439
|
+ console.log(222)
|
|
440
|
+ Object.assign(dataInfo, storeData);
|
|
441
|
+ }else{
|
|
442
|
+ console.log(333)
|
|
443
|
+ // if(Object.keys(dataInfo.evtFilter.dept).length == 0){
|
|
444
|
+ dataInfo.evtFilter.dept.text = hospital.hosName
|
|
445
|
+ dataInfo.evtFilter.dept.value = hospital.id
|
|
446
|
+ dataInfo.evtFilter.deptValue = hospital.id
|
|
447
|
+ // }
|
|
448
|
+ }
|
410
|
449
|
|
411
|
450
|
for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
|
412
|
451
|
if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
|
413
|
|
- let currentMenu = loginUserStore.loginUser.menu[i].children;
|
414
|
|
- for (let j = 0; j < currentMenu; j++) {
|
|
452
|
+ let currentMenu = loginUserStore.loginUser.menu[i].childrens;
|
|
453
|
+ for (let j = 0; j < currentMenu.length; j++) {
|
415
|
454
|
if (currentMenu[j].link == "assign") {
|
416
|
455
|
assignFlag.value = true;
|
417
|
456
|
}
|
418
|
457
|
if (currentMenu[j].link == "receive") {
|
419
|
458
|
qiangdan.value = true
|
420
|
459
|
}
|
|
460
|
+ if (currentMenu[j].link == "strideLook") {
|
|
461
|
+ showDept.value = true
|
|
462
|
+ }
|
421
|
463
|
}
|
422
|
464
|
}
|
423
|
465
|
}
|