|
|
@ -168,12 +168,12 @@ |
|
|
|
@click="Batchcompletion" |
|
|
|
@click="Batchcompletion" |
|
|
|
>批量完结</el-button |
|
|
|
>批量完结</el-button |
|
|
|
> |
|
|
|
> |
|
|
|
<!-- 仲裁中确定结束仲裁按钮 --> |
|
|
|
<!-- 完结确定结束完结按钮 --> |
|
|
|
<el-button |
|
|
|
<el-button |
|
|
|
type="primary" |
|
|
|
type="primary" |
|
|
|
v-if="ButtonPermissions.ArbitrationDetermination" |
|
|
|
v-if="ButtonPermissions.ArbitrationDetermination" |
|
|
|
@click="AllEndArbitration" |
|
|
|
@click="AllEndArbitration" |
|
|
|
>批量仲裁完成</el-button |
|
|
|
>批量完结完成</el-button |
|
|
|
> |
|
|
|
> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-button |
|
|
|
<!-- <el-button |
|
|
@ -211,7 +211,7 @@ |
|
|
|
@tab-change="AppealTab" |
|
|
|
@tab-change="AppealTab" |
|
|
|
v-model="arbitrationTemp" |
|
|
|
v-model="arbitrationTemp" |
|
|
|
> |
|
|
|
> |
|
|
|
<el-tab-pane :name="0" label="仲裁中"></el-tab-pane> |
|
|
|
<el-tab-pane :name="0" label="完结"></el-tab-pane> |
|
|
|
<el-tab-pane :name="1" label="申诉列表"></el-tab-pane> |
|
|
|
<el-tab-pane :name="1" label="申诉列表"></el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
</el-tabs> |
|
|
|
<!-- 首页表格 --> |
|
|
|
<!-- 首页表格 --> |
|
|
@ -273,7 +273,7 @@ |
|
|
|
>结果确定</el-button |
|
|
|
>结果确定</el-button |
|
|
|
> |
|
|
|
> |
|
|
|
|
|
|
|
|
|
|
|
<!-- 仲裁中确定结束仲裁按钮 --> |
|
|
|
<!-- 完结确定结束完结按钮 --> |
|
|
|
<el-button |
|
|
|
<el-button |
|
|
|
v-if="TabPermissions == '5' && UserPermissions != '仓库客服'" |
|
|
|
v-if="TabPermissions == '5' && UserPermissions != '仓库客服'" |
|
|
|
@click="EndArbitration(slotProps.scope)" |
|
|
|
@click="EndArbitration(slotProps.scope)" |
|
|
@ -612,14 +612,14 @@ |
|
|
|
</el-tab-pane> |
|
|
|
</el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
</el-tabs> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 仲裁原因 --> |
|
|
|
<!-- 完结原因 --> |
|
|
|
<div class="arbitrate"> |
|
|
|
<div class="arbitrate"> |
|
|
|
<el-tabs type="border-card" class="demo-tabs"> |
|
|
|
<el-tabs type="border-card" class="demo-tabs"> |
|
|
|
<el-tab-pane> |
|
|
|
<el-tab-pane> |
|
|
|
<template #label> |
|
|
|
<template #label> |
|
|
|
<span class="custom-tabs-label"> |
|
|
|
<span class="custom-tabs-label"> |
|
|
|
<el-icon><calendar /></el-icon> |
|
|
|
<el-icon><calendar /></el-icon> |
|
|
|
<span>仲裁原因</span> |
|
|
|
<span>完结原因</span> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
@ -627,7 +627,7 @@ |
|
|
|
v-model="Reasonarbitration" |
|
|
|
v-model="Reasonarbitration" |
|
|
|
type="textarea" |
|
|
|
type="textarea" |
|
|
|
:autosize="{ minRows: 5, maxRows: 4 }" |
|
|
|
:autosize="{ minRows: 5, maxRows: 4 }" |
|
|
|
placeholder="请输入仲裁原因" |
|
|
|
placeholder="请输入完结原因" |
|
|
|
/> |
|
|
|
/> |
|
|
|
</el-tab-pane> |
|
|
|
</el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
</el-tabs> |
|
|
@ -1068,6 +1068,7 @@ import { |
|
|
|
nextTick, |
|
|
|
nextTick, |
|
|
|
watch, |
|
|
|
watch, |
|
|
|
getCurrentInstance, |
|
|
|
getCurrentInstance, |
|
|
|
|
|
|
|
onActivated, |
|
|
|
} from 'vue'; |
|
|
|
} from 'vue'; |
|
|
|
import { |
|
|
|
import { |
|
|
|
columnList, |
|
|
|
columnList, |
|
|
@ -1089,6 +1090,7 @@ const $route = useRoute(); |
|
|
|
/** vuex */ |
|
|
|
/** vuex */ |
|
|
|
const customerData = ref([]); //查询已绑定的客服 |
|
|
|
const customerData = ref([]); //查询已绑定的客服 |
|
|
|
const pageLoad=ref(false) |
|
|
|
const pageLoad=ref(false) |
|
|
|
|
|
|
|
console.log($useStore,'$useStore'); |
|
|
|
const accessControl = $useStore.getters.permission; |
|
|
|
const accessControl = $useStore.getters.permission; |
|
|
|
console.log(accessControl, '权限按钮'); |
|
|
|
console.log(accessControl, '权限按钮'); |
|
|
|
const loadingFinancial = ref(false); |
|
|
|
const loadingFinancial = ref(false); |
|
|
@ -1110,14 +1112,14 @@ const scChange = val => { |
|
|
|
// workAdd;//新增 |
|
|
|
// workAdd;//新增 |
|
|
|
// batch_return;//批量打回 |
|
|
|
// batch_return;//批量打回 |
|
|
|
// assign;//工单指派 |
|
|
|
// assign;//工单指派 |
|
|
|
// apply_arbitration;//申请仲裁 |
|
|
|
// apply_arbitration;//申请完结 |
|
|
|
// batch_completion;//批量完结 |
|
|
|
// batch_completion;//批量完结 |
|
|
|
// representations;//申诉 |
|
|
|
// representations;//申诉 |
|
|
|
// reply;//回复 |
|
|
|
// reply;//回复 |
|
|
|
// processing_completed;//处理完结 |
|
|
|
// processing_completed;//处理完结 |
|
|
|
// work_order_completion;//完结 |
|
|
|
// work_order_completion;//完结 |
|
|
|
// repulse;//打回 |
|
|
|
// repulse;//打回 |
|
|
|
// arbitration_completed;//仲裁完结 |
|
|
|
// arbitration_completed;//完结完结 |
|
|
|
// information_editing;//信息编辑 |
|
|
|
// information_editing;//信息编辑 |
|
|
|
console.log(accessControl.workAdd, '新增按钮权限'); |
|
|
|
console.log(accessControl.workAdd, '新增按钮权限'); |
|
|
|
// const PermissionButton = computed(() => { |
|
|
|
// const PermissionButton = computed(() => { |
|
|
@ -1125,14 +1127,14 @@ console.log(accessControl.workAdd, '新增按钮权限'); |
|
|
|
// workAdd: accessControl.workAdd, //新增 |
|
|
|
// workAdd: accessControl.workAdd, //新增 |
|
|
|
// batch_return: accessControl.batch_return, //批量打回 |
|
|
|
// batch_return: accessControl.batch_return, //批量打回 |
|
|
|
// assign: accessControl.assign, //工单指派 |
|
|
|
// assign: accessControl.assign, //工单指派 |
|
|
|
// apply_arbitration: accessControl.apply_arbitration, //申请仲裁 |
|
|
|
// apply_arbitration: accessControl.apply_arbitration, //申请完结 |
|
|
|
// batch_completion: accessControl.batch_completion, //批量完结 |
|
|
|
// batch_completion: accessControl.batch_completion, //批量完结 |
|
|
|
// representations: accessControl.representations, //申诉 |
|
|
|
// representations: accessControl.representations, //申诉 |
|
|
|
// reply: accessControl.reply, //回复 |
|
|
|
// reply: accessControl.reply, //回复 |
|
|
|
// processing_completed: accessControl.processing_completed, //处理完结 |
|
|
|
// processing_completed: accessControl.processing_completed, //处理完结 |
|
|
|
// work_order_completion: accessControl.work_order_completion, //完结 |
|
|
|
// work_order_completion: accessControl.work_order_completion, //完结 |
|
|
|
// repulse: accessControl.repulse, //打回 |
|
|
|
// repulse: accessControl.repulse, //打回 |
|
|
|
// arbitration_completed: accessControl.arbitration_completed, //仲裁完结 |
|
|
|
// arbitration_completed: accessControl.arbitration_completed, //完结完结 |
|
|
|
// information_editing: accessControl.information_editing, //信息编辑 |
|
|
|
// information_editing: accessControl.information_editing, //信息编辑 |
|
|
|
// }; |
|
|
|
// }; |
|
|
|
// }); |
|
|
|
// }); |
|
|
@ -1142,14 +1144,14 @@ const PermissionButton = computed(() => { |
|
|
|
workAdd: accessControl.workAdd, //新增 |
|
|
|
workAdd: accessControl.workAdd, //新增 |
|
|
|
batch_return: accessControl.batch_return, //批量打回 |
|
|
|
batch_return: accessControl.batch_return, //批量打回 |
|
|
|
assign: accessControl.assign, //工单指派 |
|
|
|
assign: accessControl.assign, //工单指派 |
|
|
|
apply_arbitration: accessControl.apply_arbitration, //申请仲裁 |
|
|
|
apply_arbitration: accessControl.apply_arbitration, //申请完结 |
|
|
|
batch_completion: accessControl.batch_completion, //批量完结 |
|
|
|
batch_completion: accessControl.batch_completion, //批量完结 |
|
|
|
representations: accessControl.representations, //申诉 |
|
|
|
representations: accessControl.representations, //申诉 |
|
|
|
reply: accessControl.reply, //回复 |
|
|
|
reply: accessControl.reply, //回复 |
|
|
|
processing_completed: accessControl.processing_completed, //处理完结 |
|
|
|
processing_completed: accessControl.processing_completed, //处理完结 |
|
|
|
work_order_completion: accessControl.work_order_completion, //完结 |
|
|
|
work_order_completion: accessControl.work_order_completion, //完结 |
|
|
|
repulse: accessControl.repulse, //打回 |
|
|
|
repulse: accessControl.repulse, //打回 |
|
|
|
arbitration_completed: accessControl.arbitration_completed, //仲裁完结 |
|
|
|
arbitration_completed: accessControl.arbitration_completed, //完结完结 |
|
|
|
information_editing: accessControl.information_editing, //信息编辑 |
|
|
|
information_editing: accessControl.information_editing, //信息编辑 |
|
|
|
}; |
|
|
|
}; |
|
|
|
}); |
|
|
|
}); |
|
|
@ -1219,7 +1221,7 @@ const eightyPercentHeight = ref(0); // 80% 高度 |
|
|
|
const list = ref([]); |
|
|
|
const list = ref([]); |
|
|
|
const options = ref([]); |
|
|
|
const options = ref([]); |
|
|
|
|
|
|
|
|
|
|
|
const arbitrationTemp = ref(0); //仲裁中当点击的那个菜单 |
|
|
|
const arbitrationTemp = ref(0); //完结当点击的那个菜单 |
|
|
|
const CustomerData = ref([]); //客服指派表格查询 |
|
|
|
const CustomerData = ref([]); //客服指派表格查询 |
|
|
|
const repulse = ref(false); |
|
|
|
const repulse = ref(false); |
|
|
|
const dialogBatchcompletion = ref(false); //批量完结弹窗 |
|
|
|
const dialogBatchcompletion = ref(false); //批量完结弹窗 |
|
|
@ -1230,10 +1232,10 @@ const AssignCustomerservice = ref([]); //工单指派客服列表 |
|
|
|
const iconState = ref(false); //消息状态 |
|
|
|
const iconState = ref(false); //消息状态 |
|
|
|
const ProcessingPartyState = ref(false); //处理方数据(为真才显示) |
|
|
|
const ProcessingPartyState = ref(false); //处理方数据(为真才显示) |
|
|
|
const currentUser = ref(null); //存放当前的对话框必要Id |
|
|
|
const currentUser = ref(null); //存放当前的对话框必要Id |
|
|
|
const ArbitrationStatus = ref(null); //申请仲裁状态 |
|
|
|
const ArbitrationStatus = ref(null); //申请完结状态 |
|
|
|
const TotalamountCompensation = ref(0); //赔款金额合计 |
|
|
|
const TotalamountCompensation = ref(0); //赔款金额合计 |
|
|
|
const TotalamountReceived = ref(0); //收款金额合计 |
|
|
|
const TotalamountReceived = ref(0); //收款金额合计 |
|
|
|
const Reasonarbitration = ref(null); //仲裁原因 |
|
|
|
const Reasonarbitration = ref(null); //完结原因 |
|
|
|
const BatchcompletionHeight = ref(0); //批量完结弹窗 |
|
|
|
const BatchcompletionHeight = ref(0); //批量完结弹窗 |
|
|
|
const userInfo = ref(); //当前登录人信息 |
|
|
|
const userInfo = ref(); //当前登录人信息 |
|
|
|
const ClaimStatus = ref(false); //理赔状态 |
|
|
|
const ClaimStatus = ref(false); //理赔状态 |
|
|
@ -1249,16 +1251,17 @@ const TabList = ref([ |
|
|
|
{ name: 0, label: '全部', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 0, label: '全部', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 8, label: '待回复', state: false, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 8, label: '待回复', state: false, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 3, label: '待处理(新建)', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 3, label: '待处理(新建)', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 9, label: '待审核', state: true, request: true, DataList: [], total: '' }, |
|
|
|
|
|
|
|
{ name: 1, label: '处理中', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 1, label: '处理中', state: true, request: true, DataList: [], total: '' }, |
|
|
|
|
|
|
|
{ name: 4, label: '理赔金额未出', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 2, label: '处理完毕', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 2, label: '处理完毕', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 6, label: '仲裁中', state: true, request: true, DataList: [], total: '' }, |
|
|
|
|
|
|
|
{ name: 5, label: '客服介入', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 5, label: '客服介入', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 4, label: '理赔金额未出', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 6, label: '完结', state: true, request: true, DataList: [], total: '' }, |
|
|
|
|
|
|
|
{ name: 9, label: '待审核', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 7, label: '超时未处理', state: true, request: true, DataList: [], total: '' }, |
|
|
|
{ name: 7, label: '超时未处理', state: true, request: true, DataList: [], total: '' }, |
|
|
|
]); //标签栏 |
|
|
|
]); //标签栏 |
|
|
|
const DeliveryDriver = ref([]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const DeliveryDriver = ref([]); |
|
|
|
const CompensationParty = ref([ |
|
|
|
const CompensationParty = ref([ |
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //赔款方 |
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //赔款方 |
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //受款方 |
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, warehouseId: '', personResponsibleName: '' }, //受款方 |
|
|
@ -1370,13 +1373,13 @@ const { |
|
|
|
// { label: '待处理完毕', value: 2 }, |
|
|
|
// { label: '待处理完毕', value: 2 }, |
|
|
|
// { label: '待处理', value: 3 }, |
|
|
|
// { label: '待处理', value: 3 }, |
|
|
|
// { label: '理赔金额未出', value: 4 }, |
|
|
|
// { label: '理赔金额未出', value: 4 }, |
|
|
|
// { label: '仲裁中', value: 5 }, |
|
|
|
// { label: '完结', value: 5 }, |
|
|
|
// { label: '完结', value: 6 }, |
|
|
|
// { label: '完结', value: 6 }, |
|
|
|
// { label: '超时未处理', value: 7 }, |
|
|
|
// { label: '超时未处理', value: 7 }, |
|
|
|
// ]; |
|
|
|
// ]; |
|
|
|
|
|
|
|
|
|
|
|
// // 按钮配置 |
|
|
|
// // 按钮配置 |
|
|
|
// // 1.新增 2.批量打回 3.工单指派 4.申请仲裁 5.批量完结 6.申诉 |
|
|
|
// // 1.新增 2.批量打回 3.工单指派 4.申请完结 5.批量完结 6.申诉 |
|
|
|
|
|
|
|
|
|
|
|
// // 角色配置 |
|
|
|
// // 角色配置 |
|
|
|
// // 1.仓库客服 |
|
|
|
// // 1.仓库客服 |
|
|
@ -1387,7 +1390,7 @@ const { |
|
|
|
// 1.新增 只能仓库客服查看 |
|
|
|
// 1.新增 只能仓库客服查看 |
|
|
|
// 2.批量打回 只能职能客服查看 |
|
|
|
// 2.批量打回 只能职能客服查看 |
|
|
|
// 3.工单指派 只能客服经理查看 |
|
|
|
// 3.工单指派 只能客服经理查看 |
|
|
|
// 4.申请仲裁 只能仓库客服查看 |
|
|
|
// 4.申请完结 只能仓库客服查看 |
|
|
|
// 5.批量完结 只能职能客服查看 |
|
|
|
// 5.批量完结 只能职能客服查看 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
|
|
|
|
|
|
|
@ -1395,7 +1398,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 只能仓库客服查看 |
|
|
|
// 2.批量打回 只能仓库客服查看 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 4.申请仲裁 只能仓库客服查看 |
|
|
|
// 4.申请完结 只能仓库客服查看 |
|
|
|
// 5.批量完结 只能职能客服和客服经理查看 |
|
|
|
// 5.批量完结 只能职能客服和客服经理查看 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// // 在value==2状态下的权限配置 |
|
|
|
// // 在value==2状态下的权限配置 |
|
|
@ -1405,7 +1408,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 只能仓库客服查看 |
|
|
|
// 2.批量打回 只能仓库客服查看 |
|
|
|
// 3.工单指派 只能客服经理查看 |
|
|
|
// 3.工单指派 只能客服经理查看 |
|
|
|
// 4.申请仲裁 隐藏 |
|
|
|
// 4.申请完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
|
|
|
|
|
|
|
@ -1413,7 +1416,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 4.申请仲裁 隐藏 |
|
|
|
// 4.申请完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 6.申诉 仓库客服查看 |
|
|
|
// 6.申诉 仓库客服查看 |
|
|
|
|
|
|
|
|
|
|
@ -1421,7 +1424,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 4.申请仲裁 隐藏 |
|
|
|
// 4.申请完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
|
|
|
|
|
|
|
@ -1429,7 +1432,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 4.申请仲裁 隐藏 |
|
|
|
// 4.申请完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
|
|
|
|
|
|
|
@ -1437,7 +1440,7 @@ const { |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 1.新增 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 2.批量打回 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 3.工单指派 隐藏 |
|
|
|
// 4. 申请仲裁 隐藏 |
|
|
|
// 4. 申请完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 5.批量完结 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
// 6.申诉 隐藏 |
|
|
|
|
|
|
|
|
|
|
@ -1468,7 +1471,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
batchFinish: false, //批量完结 |
|
|
|
batchFinish: false, //批量完结 |
|
|
|
appeal: false, //申诉 |
|
|
|
appeal: false, //申诉 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: UserPermissions.value != '仓库客服', //默认指派 |
|
|
|
defaultassignments: UserPermissions.value != '仓库客服', //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1485,7 +1488,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
Batchdetermination: UserPermissions.value != '仓库客服', //批量确定 |
|
|
|
Batchdetermination: UserPermissions.value != '仓库客服', //批量确定 |
|
|
|
appeal: false, //申诉 |
|
|
|
appeal: false, //申诉 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1502,7 +1505,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: UserPermissions.value == '仓库客服' && AppealStatusT.value, //申诉 |
|
|
|
appeal: UserPermissions.value == '仓库客服' && AppealStatusT.value, //申诉 |
|
|
|
Batchdetermination: UserPermissions.value == '仓库客服', //批量确定 |
|
|
|
Batchdetermination: UserPermissions.value == '仓库客服', //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1519,7 +1522,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1536,7 +1539,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1553,7 +1556,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: UserPermissions.value != '仓库客服', //批量仲裁确定 |
|
|
|
ArbitrationDetermination: UserPermissions.value != '仓库客服', //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1570,7 +1573,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: UserPermissions.value == '仓库客服', //申诉 |
|
|
|
appeal: UserPermissions.value == '仓库客服', //申诉 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: true && !AppealStatusT.value, //财务入账 |
|
|
|
Financial_accounting: true && !AppealStatusT.value, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1586,7 +1589,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: false, //申诉 |
|
|
|
appeal: false, //申诉 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: false, //导出报表 |
|
|
|
export_Report: false, //导出报表 |
|
|
@ -1602,7 +1605,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: false, //申诉 |
|
|
|
appeal: false, //申诉 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: false, //导出报表 |
|
|
|
export_Report: false, //导出报表 |
|
|
@ -1618,7 +1621,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: false, //申诉 |
|
|
|
appeal: false, //申诉 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: UserPermissions.value == '总部客服经理', //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: UserPermissions.value == '总部客服经理', //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: true, //导出报表 |
|
|
|
export_Report: true, //导出报表 |
|
|
@ -1635,7 +1638,7 @@ const ButtonPermissions = computed(() => { |
|
|
|
appeal: false, |
|
|
|
appeal: false, |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
ArbitrationDetermination: false, //批量仲裁确定 |
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
export_Report: false, //导出报表 |
|
|
|
export_Report: false, //导出报表 |
|
|
@ -1737,7 +1740,7 @@ const Statusprocessing = val => { |
|
|
|
} else if (item.workOrderStatus == 60) { |
|
|
|
} else if (item.workOrderStatus == 60) { |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[3].label; //超时未处理 |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[3].label; //超时未处理 |
|
|
|
} else if (item.workOrderStatus == 70) { |
|
|
|
} else if (item.workOrderStatus == 70) { |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[6].label; //仲裁中 |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[6].label; //完结 |
|
|
|
} else if (item.workOrderStatus == 80) { |
|
|
|
} else if (item.workOrderStatus == 80) { |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[7].label; //完结 |
|
|
|
item.workOrderStatusNameS = columnList[10].checkarr[7].label; //完结 |
|
|
|
} else if (item.workOrderStatus == 90) { |
|
|
|
} else if (item.workOrderStatus == 90) { |
|
|
@ -1894,6 +1897,22 @@ const OnLoad = () => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
OnLoad(); |
|
|
|
OnLoad(); |
|
|
|
|
|
|
|
// 监听路由地址变化 |
|
|
|
|
|
|
|
watch(() => route.path, (newPath, oldPath) => { |
|
|
|
|
|
|
|
if ($useStore.state.isRefresh.refreshObj.aftersalesWorkOrder) { |
|
|
|
|
|
|
|
// 重新请求数据 |
|
|
|
|
|
|
|
OnLoad(); |
|
|
|
|
|
|
|
$useStore.commit('EDIT_REFRESHITEM', { title: 'aftersalesWorkOrder', status: false }); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
// onActivated(() => { |
|
|
|
|
|
|
|
// console.log('进入缓存'); |
|
|
|
|
|
|
|
// if ($useStore.state.isRefresh.refreshObj.aftersalesWorkOrder) { |
|
|
|
|
|
|
|
// // 重新请求数据 |
|
|
|
|
|
|
|
// OnLoad(); |
|
|
|
|
|
|
|
// $useStore.commit('EDIT_REFRESHITEM', { title: 'aftersalesWorkOrder', status: false }); |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// }); |
|
|
|
// 字典公共函数 |
|
|
|
// 字典公共函数 |
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
getDictionaryBiz(dictionaryType).then(res => { |
|
|
|
getDictionaryBiz(dictionaryType).then(res => { |
|
|
@ -2498,7 +2517,7 @@ const Appealbutton = state => { |
|
|
|
loadingappeal.value = false; //关闭加载效果 |
|
|
|
loadingappeal.value = false; //关闭加载效果 |
|
|
|
console.log(res, '功返回值'); |
|
|
|
console.log(res, '功返回值'); |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
AppealeditorState.value = false; //关闭编辑状态 |
|
|
|
AppealeditorState.value = false; //关闭编辑状态 |
|
|
|
appealData.value = {}; //清空当前行申诉数据 |
|
|
|
appealData.value = {}; //清空当前行申诉数据 |
|
|
|
if (AppealStatusT.value) { |
|
|
|
if (AppealStatusT.value) { |
|
|
@ -2836,7 +2855,7 @@ const appealFn = val => { |
|
|
|
|
|
|
|
|
|
|
|
// 申诉列表 |
|
|
|
// 申诉列表 |
|
|
|
const AppealTab = val => { |
|
|
|
const AppealTab = val => { |
|
|
|
console.log(val, '仲裁中当前列表'); |
|
|
|
console.log(val, '完结当前列表'); |
|
|
|
arbitrationTemp.value = val; |
|
|
|
arbitrationTemp.value = val; |
|
|
|
|
|
|
|
|
|
|
|
if (val == 0) { |
|
|
|
if (val == 0) { |
|
|
@ -2846,7 +2865,7 @@ const AppealTab = val => { |
|
|
|
console.log('处理完毕'); |
|
|
|
console.log('处理完毕'); |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
// empty(); //清空搜索数据 |
|
|
|
// empty(); //清空搜索数据 |
|
|
|
let data = { |
|
|
|
let data = { |
|
|
|
...details.query, |
|
|
|
...details.query, |
|
|
@ -2996,7 +3015,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
|
|
|
|
|
|
|
|
if (val == 0) { |
|
|
|
if (val == 0) { |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ArbitrationStatus.value = true; //可以以申请仲裁 |
|
|
|
ArbitrationStatus.value = true; //可以以申请完结 |
|
|
|
if (UserPermissions.value == '仓库客服') { |
|
|
|
if (UserPermissions.value == '仓库客服') { |
|
|
|
//全部 |
|
|
|
//全部 |
|
|
|
data.workOrderStatus = 1000; |
|
|
|
data.workOrderStatus = 1000; |
|
|
@ -3019,7 +3038,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
details.query.workOrderStatus = 40; |
|
|
|
details.query.workOrderStatus = 40; |
|
|
|
} |
|
|
|
} |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
ArbitrationStatus.value = true; //可以申请完结 |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
} else if (val == 2) { |
|
|
|
} else if (val == 2) { |
|
|
@ -3027,7 +3046,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
data.workOrderStatus = 30; |
|
|
|
data.workOrderStatus = 30; |
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
} else if (val == 3) { |
|
|
|
} else if (val == 3) { |
|
|
@ -3043,14 +3062,14 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
|
|
|
|
|
|
|
|
data.workOrderStatus = 10; |
|
|
|
data.workOrderStatus = 10; |
|
|
|
details.query.workOrderStatus = 10; |
|
|
|
details.query.workOrderStatus = 10; |
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
ArbitrationStatus.value = true; //可以申请完结 |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
} else if (val == 4) { |
|
|
|
} else if (val == 4) { |
|
|
|
// 理赔金额未出 |
|
|
|
// 理赔金额未出 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
details.query.workOrderStatus = null; |
|
|
|
details.query.workOrderStatus = null; |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
Tableheaderswitching(Claimsfield); //切换表格 |
|
|
|
Tableheaderswitching(Claimsfield); //切换表格 |
|
|
|
settlementclaim(data, Refresh); |
|
|
|
settlementclaim(data, Refresh); |
|
|
|
} else if (val == 5) { |
|
|
|
} else if (val == 5) { |
|
|
@ -3058,7 +3077,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
data.workOrderStatus = 70; |
|
|
|
data.workOrderStatus = 70; |
|
|
|
details.query.workOrderStatus = 70; |
|
|
|
details.query.workOrderStatus = 70; |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
|
|
|
|
|
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
} else if (val == 6 && AppealStatusT.value) { |
|
|
|
} else if (val == 6 && AppealStatusT.value) { |
|
|
@ -3075,7 +3094,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
data.workOrderStatus = 80; |
|
|
|
data.workOrderStatus = 80; |
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
Tableheaderswitching(columnList); //表头切换 |
|
|
|
Tableheaderswitching(columnList); //表头切换 |
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
var bodyContent = document.querySelectorAll('.maboxhi'); |
|
|
|
var bodyContent = document.querySelectorAll('.maboxhi'); |
|
|
@ -3089,7 +3108,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
data.workOrderStatus = null; |
|
|
|
data.workOrderStatus = null; |
|
|
|
details.query.workOrderStatus = null; |
|
|
|
details.query.workOrderStatus = null; |
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
ArbitrationStatus.value = false; //不可以申请完结 |
|
|
|
Tableheaderswitching(timeoutList); //表头切换 |
|
|
|
Tableheaderswitching(timeoutList); //表头切换 |
|
|
|
TimeoutHandling(data, Refresh); //调用超时未出理 |
|
|
|
TimeoutHandling(data, Refresh); //调用超时未出理 |
|
|
|
} else if (val == 8) { |
|
|
|
} else if (val == 8) { |
|
|
@ -3108,7 +3127,7 @@ const DataRendering = (val, input, Refresh) => { |
|
|
|
data.workOrderStatus = 500; |
|
|
|
data.workOrderStatus = 500; |
|
|
|
details.query.workOrderStatus = 500; |
|
|
|
details.query.workOrderStatus = 500; |
|
|
|
} |
|
|
|
} |
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
ArbitrationStatus.value = true; //可以申请完结 |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
Tableheaderswitching(columnList); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
IndexTable(data, Refresh); |
|
|
|
} |
|
|
|
} |
|
|
@ -3362,7 +3381,7 @@ const DetermineStorage = val => { |
|
|
|
console.log(data, '处理好的值'); |
|
|
|
console.log(data, '处理好的值'); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 仲裁里面确定按钮 |
|
|
|
// 完结里面确定按钮 |
|
|
|
const EndArbitration = val => { |
|
|
|
const EndArbitration = val => { |
|
|
|
console.log(val, '当前参数'); |
|
|
|
console.log(val, '当前参数'); |
|
|
|
let data = { |
|
|
|
let data = { |
|
|
@ -3389,7 +3408,7 @@ const EndArbitration = val => { |
|
|
|
pageLoad.value=false |
|
|
|
pageLoad.value=false |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 批量仲裁确定 |
|
|
|
// 批量完结确定 |
|
|
|
const AllEndArbitration = () => { |
|
|
|
const AllEndArbitration = () => { |
|
|
|
// 校验是否勾选了数据 |
|
|
|
// 校验是否勾选了数据 |
|
|
|
if (!details.selectionList.length) { |
|
|
|
if (!details.selectionList.length) { |
|
|
@ -3402,8 +3421,8 @@ const AllEndArbitration = () => { |
|
|
|
let data = { |
|
|
|
let data = { |
|
|
|
assignList: [], |
|
|
|
assignList: [], |
|
|
|
}; |
|
|
|
}; |
|
|
|
data['assignList'] = details.selectionList.map(res => res.id); //获取批量仲裁的ID |
|
|
|
data['assignList'] = details.selectionList.map(res => res.id); //获取批量完结的ID |
|
|
|
console.log('批量仲裁确定处理好的值'); |
|
|
|
console.log('批量完结确定处理好的值'); |
|
|
|
$_updateArbitrateStatu(data) |
|
|
|
$_updateArbitrateStatu(data) |
|
|
|
.then(res => { |
|
|
|
.then(res => { |
|
|
|
console.log(res, '处理成功'); |
|
|
|
console.log(res, '处理成功'); |
|
|
@ -3696,12 +3715,12 @@ const Assignbutton = () => { |
|
|
|
dialogassign.value = false; //关闭指派工单弹窗 |
|
|
|
dialogassign.value = false; //关闭指派工单弹窗 |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 客服介入(申请仲裁) |
|
|
|
// 客服介入(申请完结) |
|
|
|
const arbitrate = () => { |
|
|
|
const arbitrate = () => { |
|
|
|
if (!details.selectionList.length) { |
|
|
|
if (!details.selectionList.length) { |
|
|
|
console.log('当前没有数据'); |
|
|
|
console.log('当前没有数据'); |
|
|
|
ElMessage({ |
|
|
|
ElMessage({ |
|
|
|
message: '请勾要仲裁的数据', |
|
|
|
message: '请勾要完结的数据', |
|
|
|
type: 'warning', |
|
|
|
type: 'warning', |
|
|
|
}); |
|
|
|
}); |
|
|
|
return; |
|
|
|
return; |
|
|
@ -3711,7 +3730,7 @@ const arbitrate = () => { |
|
|
|
); //判断勾选中的数据是否存在不符合条件的 |
|
|
|
); //判断勾选中的数据是否存在不符合条件的 |
|
|
|
if (!resultState) { |
|
|
|
if (!resultState) { |
|
|
|
ElMessage({ |
|
|
|
ElMessage({ |
|
|
|
message: '勾选数据不符合(待处理或处理中才可以申请仲裁)', |
|
|
|
message: '勾选数据不符合(待处理或处理中才可以申请完结)', |
|
|
|
type: 'warning', |
|
|
|
type: 'warning', |
|
|
|
}); |
|
|
|
}); |
|
|
|
return; |
|
|
|
return; |
|
|
@ -3729,12 +3748,12 @@ const CustomerServiceintervention = () => { |
|
|
|
data['assignList'].push(item.id); |
|
|
|
data['assignList'].push(item.id); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
console.log(data, '仲裁处理好的参数'); |
|
|
|
console.log(data, '完结处理好的参数'); |
|
|
|
loadingCustomer.value = true; //开启加载 |
|
|
|
loadingCustomer.value = true; //开启加载 |
|
|
|
// 发送请求 |
|
|
|
// 发送请求 |
|
|
|
$_arbitrate(data) |
|
|
|
$_arbitrate(data) |
|
|
|
.then(res => { |
|
|
|
.then(res => { |
|
|
|
console.log(res, '仲裁成功返回值'); |
|
|
|
console.log(res, '完结成功返回值'); |
|
|
|
// PagerefreshPublic(); |
|
|
|
// PagerefreshPublic(); |
|
|
|
DataRendering(TabPermissions.value, details.query, true); |
|
|
|
DataRendering(TabPermissions.value, details.query, true); |
|
|
|
if (res.data.code == 200) { |
|
|
|
if (res.data.code == 200) { |
|
|
@ -3937,7 +3956,7 @@ const CompletedSubmission = () => { |
|
|
|
// } |
|
|
|
// } |
|
|
|
if (!Reasonarbitration.value) { |
|
|
|
if (!Reasonarbitration.value) { |
|
|
|
ElMessage({ |
|
|
|
ElMessage({ |
|
|
|
message: '请填写仲裁原因', |
|
|
|
message: '请填写完结原因', |
|
|
|
type: 'warning', |
|
|
|
type: 'warning', |
|
|
|
}); |
|
|
|
}); |
|
|
|
return; |
|
|
|
return; |
|
|
|