|
|
|
@ -2395,25 +2395,37 @@ const tabChenge = val => {
|
|
|
|
|
console.log('全部'); |
|
|
|
|
} else if (val == 1) { |
|
|
|
|
// 处理中 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
if (UserPermissions.value == '职能客服') { |
|
|
|
|
data.workOrderStatus = 40; |
|
|
|
|
details.query.workOrderStatus = 40; |
|
|
|
|
} else { |
|
|
|
|
data.workOrderStatus = 20; |
|
|
|
|
details.query.workOrderStatus = 20; |
|
|
|
|
} |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
|
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 2) { |
|
|
|
|
// 处理完毕 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
if (UserPermissions.value == '职能客服') { |
|
|
|
|
data.workOrderStatus = 50; |
|
|
|
|
details.query.workOrderStatus = 50; |
|
|
|
|
} else { |
|
|
|
|
data.workOrderStatus = 30; |
|
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
|
} |
|
|
|
|
// 处理完毕 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
|
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 3) { |
|
|
|
|
console.log(JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name,'当前身份'); |
|
|
|
|
if (JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name == '客服经理') { |
|
|
|
|
console.log(UserPermissions.value, '当前身份'); |
|
|
|
|
if (UserPermissions.value == '客服经理') { |
|
|
|
|
data.workOrderStatus = 10; |
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|