|
|
|
@ -205,7 +205,12 @@
|
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<!-- 申诉列表展示 --> |
|
|
|
|
<el-tabs type="border-card" v-if="TabPermissions == 6" @tab-change="AppealTab" v-model="arbitrationTemp"> |
|
|
|
|
<el-tabs |
|
|
|
|
type="border-card" |
|
|
|
|
v-if="TabPermissions == 6" |
|
|
|
|
@tab-change="AppealTab" |
|
|
|
|
v-model="arbitrationTemp" |
|
|
|
|
> |
|
|
|
|
<el-tab-pane :name="0" label="仲裁中"></el-tab-pane> |
|
|
|
|
<el-tab-pane :name="1" label="申诉列表"></el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
@ -382,7 +387,7 @@
|
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-row class="el-fy"> |
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
|
|
|
|
<div>勾选数量:{{details.selectionList.length}}</div> |
|
|
|
|
<div>勾选数量:{{ details.selectionList.length }}</div> |
|
|
|
|
<el-pagination |
|
|
|
|
align="right" |
|
|
|
|
background |
|
|
|
@ -1074,7 +1079,7 @@ import {
|
|
|
|
|
} from '@/option/aftersales/vueTvemp.js'; |
|
|
|
|
import { processRowProperty, isNumber, computeNumber } from '@/utils/util'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { downloadXls, deepClone } from '@/utils/util'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
const $router = useRouter(); |
|
|
|
|
const $useStore = useStore(); |
|
|
|
@ -1210,14 +1215,11 @@ const screenHeight = ref(0); // 屏幕高度
|
|
|
|
|
const eightyPercentHeight = ref(0); // 80% 高度 |
|
|
|
|
const list = ref([]); |
|
|
|
|
const options = ref([]); |
|
|
|
|
const arbitration = ref( |
|
|
|
|
{ |
|
|
|
|
const arbitration = ref({ |
|
|
|
|
a: 0, |
|
|
|
|
b: 1, |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
); |
|
|
|
|
const arbitrationTemp=ref(0);//仲裁中当点击的那个菜单 |
|
|
|
|
}); |
|
|
|
|
const arbitrationTemp = ref(0); //仲裁中当点击的那个菜单 |
|
|
|
|
const CustomerData = ref([]); //客服指派表格查询 |
|
|
|
|
const repulse = ref(false); |
|
|
|
|
const dialogBatchcompletion = ref(false); //批量完结弹窗 |
|
|
|
@ -1302,12 +1304,12 @@ const details = reactive({
|
|
|
|
|
/** 时间选择器数据 */ |
|
|
|
|
stockupDate: [], |
|
|
|
|
/** 列表 */ |
|
|
|
|
columnList, |
|
|
|
|
columnList: deepClone(columnList), |
|
|
|
|
|
|
|
|
|
/** 列表数据 */ |
|
|
|
|
data: [], |
|
|
|
|
// 处理记录 |
|
|
|
|
recordList, |
|
|
|
|
recordList: deepClone(recordList), |
|
|
|
|
// 处理记录数据 |
|
|
|
|
recorddata: [], |
|
|
|
|
/** 页面loading */ |
|
|
|
@ -2520,29 +2522,6 @@ const inputsc = async (index, row) => {
|
|
|
|
|
await DataRendering(TabPermissions.value, details.query, true); |
|
|
|
|
TabList.value.find(res => res.name == TabPermissions.value).request = false; |
|
|
|
|
return; |
|
|
|
|
console.log('没有执行'); |
|
|
|
|
if (TabPermissions.value == '4') { |
|
|
|
|
// 理赔金额未出 |
|
|
|
|
settlementclaim(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (AppealStatusT.value && TabPermissions.value == '6') { |
|
|
|
|
// 申诉列表 |
|
|
|
|
appealFn(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (TabPermissions.value == '8') { |
|
|
|
|
// 待回复 |
|
|
|
|
ProcessingPartyFun(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (TabPermissions.value == '7') { |
|
|
|
|
TimeoutHandling(details.query); //超时未处理 |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
IndexTable(details.query); //首页初始化信息 |
|
|
|
|
|
|
|
|
|
// ======= |
|
|
|
|
|
|
|
|
@ -2576,20 +2555,6 @@ const inputsc = async (index, row) => {
|
|
|
|
|
const searchChange = () => { |
|
|
|
|
DataRendering(TabPermissions.value, details.query, true); |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
if (ClaimStatus.value) { |
|
|
|
|
// 表示这是理赔查询 |
|
|
|
|
settlementclaim(); |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
IndexTable(details.query); //首页初始化信息 |
|
|
|
|
} else { |
|
|
|
|
ProcessingPartyFun(details.query); //处理方信息 |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const emptyvalues = data => { |
|
|
|
@ -2637,15 +2602,6 @@ const timesc = async (index, row) => {
|
|
|
|
|
await DataRendering(TabPermissions.value, details.query, true); |
|
|
|
|
TabList.value.find(res => res.name == TabPermissions.value).request = false; |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
console.log(index, row); |
|
|
|
|
if (!!index) { |
|
|
|
|
index = dayjs(index).format('YYYY-MM-DD'); |
|
|
|
|
} |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
if (!index) { |
|
|
|
|
delete details.query[row.prop]; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
@ -2664,30 +2620,6 @@ const selectsc = async (index, row) => {
|
|
|
|
|
TabList.value.find(res => res.name == TabPermissions.value).request = false; |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
if (TimeoutStatus.value) { |
|
|
|
|
// 超时列表 |
|
|
|
|
TimeoutHandling(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (AppealStatus.value) { |
|
|
|
|
// 申诉列表 |
|
|
|
|
appealFn(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (ClaimStatus.value) { |
|
|
|
|
// 这是理赔搜索 |
|
|
|
|
settlementclaim(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
IndexTable(details.query); //首页初始化信息 |
|
|
|
|
} else { |
|
|
|
|
ProcessingPartyFun(details.query); //处理方信息 |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 反字典公共请求 |
|
|
|
@ -2716,30 +2648,6 @@ const currentChange = async val => {
|
|
|
|
|
await DataRendering(TabPermissions.value, details.query, true); |
|
|
|
|
TabList.value.find(res => res.name == TabPermissions.value).request = false; |
|
|
|
|
return; |
|
|
|
|
// 超时 |
|
|
|
|
if (TimeoutStatus.value) { |
|
|
|
|
TimeoutHandling(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (AppealStatus.value) { |
|
|
|
|
// 申诉列表 |
|
|
|
|
appealFn(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (ClaimStatus.value) { |
|
|
|
|
// 这是理赔 |
|
|
|
|
settlementclaim(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
//表示当前不是处理方 |
|
|
|
|
IndexTable(details.query); |
|
|
|
|
} else { |
|
|
|
|
ProcessingPartyFun(details.query); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
// 每页多少条 |
|
|
|
|
const sizeChange = async val => { |
|
|
|
@ -2748,29 +2656,6 @@ const sizeChange = async val => {
|
|
|
|
|
await DataRendering(TabPermissions.value, details.query, true); |
|
|
|
|
TabList.value.find(res => res.name == TabPermissions.value).request = false; |
|
|
|
|
return; |
|
|
|
|
// 超时 |
|
|
|
|
if (TimeoutStatus.value) { |
|
|
|
|
TimeoutHandling(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (AppealStatus.value) { |
|
|
|
|
// 申诉列表 |
|
|
|
|
appealFn(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (ClaimStatus.value) { |
|
|
|
|
// 这是理赔 |
|
|
|
|
settlementclaim(details.query); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
//表示当前不是处理方 |
|
|
|
|
IndexTable(details.query); |
|
|
|
|
} else { |
|
|
|
|
ProcessingPartyFun(details.query); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
const changeProcessingResults = val => { |
|
|
|
|
// 首先删除取消的项目 |
|
|
|
@ -2939,13 +2824,12 @@ const appealFn = val => {
|
|
|
|
|
|
|
|
|
|
// 申诉列表 |
|
|
|
|
const AppealTab = val => { |
|
|
|
|
|
|
|
|
|
console.log(val, '仲裁中当前列表'); |
|
|
|
|
console.log(arbitration.value,'菜单'); |
|
|
|
|
arbitrationTemp.value=val |
|
|
|
|
console.log(arbitration.value, '菜单'); |
|
|
|
|
arbitrationTemp.value = val; |
|
|
|
|
|
|
|
|
|
if (val == 0) { |
|
|
|
|
arbitrationTemp.value=0 |
|
|
|
|
arbitrationTemp.value = 0; |
|
|
|
|
AppealStatusT.value = false; //申诉列表关闭 |
|
|
|
|
Tableheaderswitching(columnList); //切换表头 |
|
|
|
|
console.log('处理完毕'); |
|
|
|
@ -2958,8 +2842,7 @@ const AppealTab = val => {
|
|
|
|
|
}; |
|
|
|
|
IndexTable(data, true); |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
arbitrationTemp.value=1 |
|
|
|
|
arbitrationTemp.value = 1; |
|
|
|
|
AppealListFn(); //申诉列表函数 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2970,7 +2853,7 @@ const AppealTab = val => {
|
|
|
|
|
// 申诉列表公共函数 |
|
|
|
|
function AppealListFn(val) { |
|
|
|
|
AppealStatusT.value = true; //申诉列表开启 |
|
|
|
|
console.log(AppealStatusT.value,'AppealStatusT.value'); |
|
|
|
|
console.log(AppealStatusT.value, 'AppealStatusT.value'); |
|
|
|
|
data.workOrderStatus = ''; |
|
|
|
|
console.log(data.workOrderStatus, '当前搜索状态'); |
|
|
|
|
Tableheaderswitching(AppealList); //切换表头 |
|
|
|
@ -3165,7 +3048,6 @@ const DataRendering = (val, input, Refresh) => {
|
|
|
|
|
|
|
|
|
|
IndexTable(data, Refresh); |
|
|
|
|
} else if (val == 6 && AppealStatusT.value) { |
|
|
|
|
|
|
|
|
|
// 申诉列表 |
|
|
|
|
Tableheaderswitching(AppealList); //切换表头 |
|
|
|
|
console.log('申诉列表'); |
|
|
|
@ -3173,8 +3055,8 @@ const DataRendering = (val, input, Refresh) => {
|
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
AppealListFn(data, Refresh); //申诉列表函数 |
|
|
|
|
} else if (val == 6) { |
|
|
|
|
console.log(arbitrationTemp.value,'arbitrationTemp.value'); |
|
|
|
|
console.log(AppealStatusT.value,'AppealStatusT.value'); |
|
|
|
|
console.log(arbitrationTemp.value, 'arbitrationTemp.value'); |
|
|
|
|
console.log(AppealStatusT.value, 'AppealStatusT.value'); |
|
|
|
|
// 完结 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 80; |
|
|
|
@ -3235,107 +3117,6 @@ const tabChenge = async (val, input, Refresh = false) => {
|
|
|
|
|
DataRendering(TabPermissions.value, input, Refresh); |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
if (val == 0) { |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
ArbitrationStatus.value = true; //可以以申请仲裁 |
|
|
|
|
if (UserPermissions.value == '仓库客服') { |
|
|
|
|
//全部 |
|
|
|
|
data.workOrderStatus = 1000; |
|
|
|
|
details.query.workOrderStatus = 1000; |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else { |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(); |
|
|
|
|
} |
|
|
|
|
} else if (val == 1) { |
|
|
|
|
// 处理中 |
|
|
|
|
if (UserPermissions.value == '仓库客服') { |
|
|
|
|
data.workOrderStatus = 20; |
|
|
|
|
details.query.workOrderStatus = 20; |
|
|
|
|
} else { |
|
|
|
|
data.workOrderStatus = 40; |
|
|
|
|
details.query.workOrderStatus = 40; |
|
|
|
|
} |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 2) { |
|
|
|
|
//处理完毕 |
|
|
|
|
data.workOrderStatus = 30; |
|
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 3) { |
|
|
|
|
// 待处理 |
|
|
|
|
ProcessingPartyState.value = true; //开启处理方 |
|
|
|
|
if (UserPermissions.value != '仓库客服') { |
|
|
|
|
data.workOrderStatus = 500; |
|
|
|
|
details.query.workOrderStatus = 500; |
|
|
|
|
} else { |
|
|
|
|
data.workOrderStatus = 10; |
|
|
|
|
details.query.workOrderStatus = 10; |
|
|
|
|
} |
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 4) { |
|
|
|
|
// 理赔金额未出 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(Claimsfield); //切换表格 |
|
|
|
|
settlementclaim(data); |
|
|
|
|
} else if (val == 5) { |
|
|
|
|
// 仲裁中 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 70; |
|
|
|
|
details.query.workOrderStatus = 70; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); //表头切换 |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 6 && AppealStatusT.value) { |
|
|
|
|
console.log('申诉列表'); |
|
|
|
|
data.workOrderStatus = null; |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
AppealListFn(data); //申诉列表函数 |
|
|
|
|
} else if (val == 6) { |
|
|
|
|
// 完结 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 80; |
|
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); //表头切换 |
|
|
|
|
IndexTable(data); |
|
|
|
|
var bodyContent = document.querySelectorAll('.maboxhi'); |
|
|
|
|
const _height = getWinHight(); |
|
|
|
|
// 设置列表的高度 |
|
|
|
|
bodyContent.forEach(val => { |
|
|
|
|
val.style.height = _height - val.getBoundingClientRect().top - (65 + 20) + 'px'; |
|
|
|
|
}); |
|
|
|
|
} else if (val == 7) { |
|
|
|
|
// 超时未处理 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = null; |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(timeoutList); //表头切换 |
|
|
|
|
TimeoutHandling(); //调用超时未出理 |
|
|
|
|
} else if (val == 8) { |
|
|
|
|
// 待回复按钮 |
|
|
|
|
if (UserPermissions.value == '仓库客服') { |
|
|
|
|
// 不是仓库客服看不见待回复按钮 |
|
|
|
|
data.workOrderStatus = null; |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
ProcessingPartyFun(data); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
console.log('执行完毕'); |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* 设置列表 -- 固定函数 |
|
|
|
@ -3443,11 +3224,6 @@ const reply = val => {
|
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
console.log(val, 'ID++++++++'); |
|
|
|
|
console.log(val.row); |
|
|
|
|
dialogcustomerService.value = true; //开启回复弹窗 |
|
|
|
|
ListRow.value = val.row; //存储当前行点击数据 |
|
|
|
|
FKList(); |
|
|
|
|
}; |
|
|
|
|
// 处理方数据 |
|
|
|
|
const ProcessingParty = () => { |
|
|
|
@ -4722,7 +4498,6 @@ const AssignSubmission = () => {
|
|
|
|
|
display: flex; |
|
|
|
|
align-items: flex-end; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
.el-times { |
|
|
|
|
:deep(.el-input__wrapper) { |
|
|
|
|