|
|
|
@ -89,6 +89,7 @@
|
|
|
|
|
<el-button type="primary" @click="assign">工单指派</el-button> |
|
|
|
|
<el-button type="primary" @click="arbitrate">申请仲裁</el-button> |
|
|
|
|
<el-button type="primary" @click="Batchcompletion">批量完结</el-button> |
|
|
|
|
<el-button type="primary" @click="appeal">申诉</el-button> |
|
|
|
|
<!-- <el-button type="primary" @click="ProcessingParty"> 处理方信息</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
@ -99,12 +100,20 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
|
<!-- 申诉列表展示 --> |
|
|
|
|
<el-tabs |
|
|
|
|
type="border-card" |
|
|
|
|
v-if="details.query.workOrderStatus == 30" |
|
|
|
|
@tab-change="AppealTab" |
|
|
|
|
> |
|
|
|
|
<el-tab-pane label="处理完毕"></el-tab-pane> |
|
|
|
|
<el-tab-pane label="申诉列表"></el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
<!-- 首页表格 --> |
|
|
|
|
<el-row> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="columnList" |
|
|
|
|
:columnList="publicColumnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.list" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
@ -941,6 +950,36 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
<!-- 申诉弹窗 --> |
|
|
|
|
<el-dialog v-model="dialogappeal" title="工单申诉" width="30%"> |
|
|
|
|
<div class="el_appeal" v-loading="loadingappeal" element-loading-text="Loading..."> |
|
|
|
|
<el-select |
|
|
|
|
v-model="Appealselection" |
|
|
|
|
clearable |
|
|
|
|
filterable |
|
|
|
|
multiple |
|
|
|
|
placeholder="请选择责任方" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in warehouseData" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<el-input |
|
|
|
|
v-model="Reasonforappeal" |
|
|
|
|
:rows="4" |
|
|
|
|
type="textarea" |
|
|
|
|
placeholder="请输入申诉原因" |
|
|
|
|
/> |
|
|
|
|
|
|
|
|
|
<span class="el_sdialog-footer"> |
|
|
|
|
<el-button @click="dialogappeal = false">取消</el-button> |
|
|
|
|
<el-button type="primary" @click="Appealbutton"> 确定 </el-button> |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
</basic-container> |
|
|
|
|
</div> |
|
|
|
|
</el-tabs> |
|
|
|
@ -972,18 +1011,22 @@ import {
|
|
|
|
|
$_getCustomerServicePersonnel, |
|
|
|
|
$_arbitrate, |
|
|
|
|
$_addCompletionEnd, |
|
|
|
|
$_appealSubmit, |
|
|
|
|
$_listSettlement, |
|
|
|
|
$_getAbnormalPackage, |
|
|
|
|
} from '@/api/aftersales/aftersalesWorkOrder'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { getDetailWarehouse, getDeptWarehouse } from '@/api/basicdata/basicdataWarehouse'; //处理方 |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList, recordList } from '@/option/aftersales/vueTvemp.js'; |
|
|
|
|
import { columnList, recordList, Claimsfield } from '@/option/aftersales/vueTvemp.js'; |
|
|
|
|
import { processRowProperty, isNumer, computeNumber } from '@/utils/util'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
const $router = useRouter(); |
|
|
|
|
const tabValue = ref(0); //侧边栏激活状态 |
|
|
|
|
const publicColumnList = ref([]); //公共列表参数 |
|
|
|
|
const scrollContainer = ref(null); //客服实例 |
|
|
|
|
const workOrderStatus = ref(null); //侧边栏参数 |
|
|
|
|
const BatchFrom = ref({}); //批量打回 |
|
|
|
@ -991,13 +1034,16 @@ const currentPage = ref(1); // 默认页码
|
|
|
|
|
const pageSize = ref(30); // 默认每一页几条 |
|
|
|
|
const total = ref(0); //页码总页数 |
|
|
|
|
const KFinput = ref(''); //客服发送消息 |
|
|
|
|
const Appealselection = ref([]); //申诉选择的责任人 |
|
|
|
|
const KFfeel = ref(''); //文件附件地址 |
|
|
|
|
const pageList = ref([5, 10, 50, 100, 200]); // 选择每页显示多少条 |
|
|
|
|
const background = ref(true); // 是否开启背景颜色 |
|
|
|
|
const disabled = ref(false); // 是否禁止使用页码功能 |
|
|
|
|
const loading = ref(false); //首页表格加载效果 |
|
|
|
|
const dialogReturn = ref(false); //批量打回弹窗状态 |
|
|
|
|
const dialogappeal = ref(false); //申诉弹窗状态 |
|
|
|
|
const Indexdialog = ref(false); //新增弹窗 |
|
|
|
|
const Reasonforappeal = ref(''); //申诉原因 |
|
|
|
|
const Indexform = ref({}); //首页新增表单 |
|
|
|
|
const dialogcustomerService = ref(false); //客服信息 |
|
|
|
|
const IndexException = ref([]); //异常类型下拉选择 |
|
|
|
@ -1006,8 +1052,10 @@ const warehouseData = ref([]); //处理方
|
|
|
|
|
const customerService = ref([]); |
|
|
|
|
const IndexForm = ref(null); //首页表实例 |
|
|
|
|
const FromDisabled = ref(false); //详情禁止输入框 |
|
|
|
|
const loadingappeal = ref(false); //工单申诉状态 |
|
|
|
|
const SelectType = ref(null); //类型 |
|
|
|
|
const ListRow = ref(); //当前行数据 |
|
|
|
|
const appealList = ref(); //申诉选择的参数 |
|
|
|
|
const StateType = ref(true); //类型 |
|
|
|
|
const dialogassign = ref(false); //工单指派 |
|
|
|
|
const AssignLoad = ref(false); //工单指派加载 |
|
|
|
@ -1035,6 +1083,8 @@ const TotalamountCompensation = ref(0); //赔款金额合计
|
|
|
|
|
const TotalamountReceived = ref(0); //收款金额合计 |
|
|
|
|
const Reasonarbitration = ref(null); //仲裁原因 |
|
|
|
|
const BatchcompletionHeight = ref(0); //批量完结弹窗 |
|
|
|
|
const userInfo = ref(); //当前登录人信息 |
|
|
|
|
const ClaimStatus = ref(false);//理赔状态 |
|
|
|
|
const TabList = ref([ |
|
|
|
|
{ name: 0, label: '全部' }, |
|
|
|
|
{ name: 1, label: '处理中' }, |
|
|
|
@ -1218,6 +1268,7 @@ const TransportLossNode = ref([
|
|
|
|
|
|
|
|
|
|
// 页面初始化数据 |
|
|
|
|
const IndexTable = val => { |
|
|
|
|
ClaimStatus.value=false; |
|
|
|
|
// ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
details.loadingObj.list = true; //开启动画加载 |
|
|
|
|
let data = { |
|
|
|
@ -1243,33 +1294,33 @@ const IndexTable = val => {
|
|
|
|
|
} |
|
|
|
|
// 对状态进行处理 |
|
|
|
|
if (item.workOrderType == 1) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[0].label; //货损 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[0].label; //货损 |
|
|
|
|
} else if (item.workOrderType == 2) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[1].label; //少货 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[1].label; //少货 |
|
|
|
|
} else if (item.workOrderType == 3) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[2].label; //窜货 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[2].label; //窜货 |
|
|
|
|
} else if (item.workOrderType == 4) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[3].label; //加急 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[3].label; //加急 |
|
|
|
|
} else if (item.workOrderType == 5) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[4].label; //其他 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[4].label; //其他 |
|
|
|
|
} |
|
|
|
|
// 提货环节下拉赋值 |
|
|
|
|
if (item.discoveryNode == 1) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[0].label; //提货环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[0].label; //提货环节 |
|
|
|
|
} else if (item.discoveryNode == 2) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[1].label; //发货环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[1].label; //发货环节 |
|
|
|
|
} else if (item.discoveryNode == 3) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[2].label; //干线卸车环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[2].label; //干线卸车环节 |
|
|
|
|
} else if (item.discoveryNode == 4) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[3].label; //库内作业环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[3].label; //库内作业环节 |
|
|
|
|
} else if (item.discoveryNode == 5) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[4].label; //配送装车环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[4].label; //配送装车环节 |
|
|
|
|
} else if (item.discoveryNode == 6) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[5].label; //其他 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[5].label; //其他 |
|
|
|
|
} else if (item.discoveryNode == 7) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[6].label; //配送签收环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[6].label; //配送签收环节 |
|
|
|
|
} else if (item.discoveryNode == 8) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[7].label; //安装环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[7].label; //安装环节 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
details.data = res.data.data.records; |
|
|
|
@ -1280,8 +1331,15 @@ const IndexTable = val => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 表格切换 |
|
|
|
|
const Tableheaderswitching = (val = columnList) => { |
|
|
|
|
publicColumnList.value = val; //默认加载表格 |
|
|
|
|
}; |
|
|
|
|
// 页面初始化 |
|
|
|
|
const OnLoad = () => { |
|
|
|
|
// 表格切换 |
|
|
|
|
Tableheaderswitching(); |
|
|
|
|
userInfo.value = JSON.parse(localStorage.getItem('TWMS-userInfo')); //获取本地登录人参数 |
|
|
|
|
Mydata.value = JSON.parse(localStorage.getItem('my_data')); //获取本地仓库信息 |
|
|
|
|
currentUser.value = Mydata.value.id; |
|
|
|
|
// 在组件挂载后获取屏幕高度 |
|
|
|
@ -1414,10 +1472,10 @@ const view = val => {
|
|
|
|
|
query: { |
|
|
|
|
id: val.row.id, |
|
|
|
|
name: val.row.id + '-信息查看', |
|
|
|
|
RouterState: 'view', |
|
|
|
|
routerState: 'view', |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
return |
|
|
|
|
return; |
|
|
|
|
console.log(val, '当前行数据'); |
|
|
|
|
FromDisabled.value = true; //禁用输入框 |
|
|
|
|
updateDictionary(IndexException.value, 'pc_work_order'); //异常类型 |
|
|
|
@ -1510,11 +1568,86 @@ const addingRecord = val => {
|
|
|
|
|
path: '/aftersales/aftersalesWorkOrderend', |
|
|
|
|
query: { |
|
|
|
|
id: val.row.id, |
|
|
|
|
name: val.row.id + '-添加异常记录', |
|
|
|
|
name: val.row.workOrderNumber + '-添加异常记录', |
|
|
|
|
RouterState: 'record', |
|
|
|
|
businessId: val.row.businessId, |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 工单申诉按钮 |
|
|
|
|
const appeal = val => { |
|
|
|
|
console.log(details.selectionList, 'details.selectionList'); |
|
|
|
|
if (!details.selectionList.length) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请选择要申诉的数据', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
dialogappeal.value = true; //展开申诉弹窗 |
|
|
|
|
}; |
|
|
|
|
// 工单申诉确认按钮 |
|
|
|
|
const Appealbutton = () => { |
|
|
|
|
loadingappeal.value = true; //开启加载效果 |
|
|
|
|
console.log(Appealselection.value, '当前选择的责任人'); |
|
|
|
|
console.log(warehouseData.value, '要循环处理的参数'); |
|
|
|
|
let data = { |
|
|
|
|
peopleEntityList: [], //参数一 |
|
|
|
|
}; |
|
|
|
|
details.selectionList.forEach(item => { |
|
|
|
|
console.log(item, '已经选择的列表'); |
|
|
|
|
data['peopleEntityList'].push({ |
|
|
|
|
workOrderId: item.id, //异常工单ID |
|
|
|
|
warehouseId: item.warehouseId == '/' ? '' : item.warehouseId, |
|
|
|
|
reason: Reasonforappeal.value, //申诉理由 |
|
|
|
|
claimant: userInfo.value.content.user_name, //申诉人 |
|
|
|
|
claimantUserId: userInfo.value.content.user_id, //申诉人ID |
|
|
|
|
actualPersonName: warehouseData.value |
|
|
|
|
.filter(item => Appealselection.value.includes(item.value)) |
|
|
|
|
.map(item => item.label) |
|
|
|
|
.join(','), //实际责任人名称 |
|
|
|
|
actualPersonId: warehouseData.value |
|
|
|
|
.filter(item => Appealselection.value.includes(item.value)) |
|
|
|
|
.map(item => item.value) |
|
|
|
|
.join(','), //实际责任人ID |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
console.log(data, '处理好的值'); |
|
|
|
|
$_appealSubmit(data).then(res => { |
|
|
|
|
dialogappeal.value = false; //关闭申诉弹窗 |
|
|
|
|
loadingappeal.value = false; //关闭加载效果 |
|
|
|
|
console.log(res, '申诉成功返回值'); |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 30; |
|
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
tabValue.value = 2; |
|
|
|
|
empty(); //清空搜索数据 |
|
|
|
|
IndexTable({ workOrderStatus: 30 }); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 申诉列表 |
|
|
|
|
const AppealTab = val => { |
|
|
|
|
if (val == 0) { |
|
|
|
|
console.log('处理完毕'); |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 30; |
|
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
empty(); //清空搜索数据 |
|
|
|
|
IndexTable({ workOrderStatus: 30 }); |
|
|
|
|
} else { |
|
|
|
|
console.log('当前是申诉列表'); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 异常类型事件 |
|
|
|
|
const abnormalChange = val => { |
|
|
|
|
console.log(val); |
|
|
|
@ -1587,8 +1720,16 @@ const handlePictureCardPreview = uploadFile => {
|
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
|
const inputsc = (index, row) => { |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
if(ClaimStatus.value){ |
|
|
|
|
// 这是理赔搜索 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
IndexTable(details.query); //首页初始化信息 |
|
|
|
|
console.log('首页'); |
|
|
|
@ -1599,6 +1740,14 @@ const inputsc = (index, row) => {
|
|
|
|
|
}; |
|
|
|
|
// 网页顶部搜索按钮 |
|
|
|
|
const searchChange = () => { |
|
|
|
|
if( ClaimStatus.value){ |
|
|
|
|
// 表示这是理赔查询 |
|
|
|
|
settlementclaim() |
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
details.search = false; //关闭搜索 |
|
|
|
|
if (!ProcessingPartyState.value) { |
|
|
|
|
IndexTable(details.query); //首页初始化信息 |
|
|
|
@ -1658,7 +1807,7 @@ function onLoad() {}
|
|
|
|
|
|
|
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
|
const selectionChange = list => { |
|
|
|
|
console.log(list); |
|
|
|
|
console.log(list, '当前选择的数据'); |
|
|
|
|
details.selectionList = list; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -1724,6 +1873,26 @@ const changeProcessingResults = val => {
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 查询理赔数据 |
|
|
|
|
const settlementclaim = (val) => { |
|
|
|
|
ClaimStatus.value=true;//开启理赔查询状态 |
|
|
|
|
details.columnList = Claimsfield; |
|
|
|
|
details.loadingObj.list = true; //开启动画加载 |
|
|
|
|
console.log(details,'details'); |
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
|
...val |
|
|
|
|
}; |
|
|
|
|
console.log(data,'要传递的参数'); |
|
|
|
|
$_listSettlement(data).then(res => { |
|
|
|
|
details.loadingObj.list = false; //关闭动画加载 |
|
|
|
|
console.log(res, '查询理赔数据'); |
|
|
|
|
details.data = res.data.data.records;//数据 |
|
|
|
|
page.value.total = res.data.data.total; |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 标签栏触发 |
|
|
|
|
const tabChenge = val => { |
|
|
|
|
console.log(val, '触发了标签栏'); |
|
|
|
@ -1732,6 +1901,7 @@ const tabChenge = val => {
|
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
IndexTable(); |
|
|
|
|
empty(); |
|
|
|
|
console.log('全部'); |
|
|
|
@ -1741,6 +1911,7 @@ const tabChenge = val => {
|
|
|
|
|
data.workOrderStatus = 20; |
|
|
|
|
details.query.workOrderStatus = 20; |
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 2) { |
|
|
|
@ -1749,30 +1920,32 @@ const tabChenge = val => {
|
|
|
|
|
data.workOrderStatus = 30; |
|
|
|
|
details.query.workOrderStatus = 30; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 3) { |
|
|
|
|
console.log('待处理'); |
|
|
|
|
|
|
|
|
|
ProcessingPartyState.value = true; //开启处理方 |
|
|
|
|
details.query.workOrderStatus = ''; |
|
|
|
|
ArbitrationStatus.value = true; //可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
ProcessingPartyFun(data); |
|
|
|
|
} else if (val == 4) { |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
// 理赔金额未出 |
|
|
|
|
data.workOrderStatus = 40; |
|
|
|
|
details.query.workOrderStatus = 40; |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(Claimsfield); //切换表格 |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
settlementclaim(); |
|
|
|
|
} else if (val == 5) { |
|
|
|
|
// 仲裁中 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 70; |
|
|
|
|
details.query.workOrderStatus = 70; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 6) { |
|
|
|
@ -1781,14 +1954,16 @@ const tabChenge = val => {
|
|
|
|
|
data.workOrderStatus = 80; |
|
|
|
|
details.query.workOrderStatus = 80; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} else if (val == 7) { |
|
|
|
|
} else if (val == 7) { |
|
|
|
|
// 超时未处理 |
|
|
|
|
ProcessingPartyState.value = false; //关闭处理方 |
|
|
|
|
data.workOrderStatus = 60; |
|
|
|
|
details.query.workOrderStatus = 60; |
|
|
|
|
ArbitrationStatus.value = false; //不可以申请仲裁 |
|
|
|
|
Tableheaderswitching(columnList); |
|
|
|
|
empty(); |
|
|
|
|
IndexTable(data); |
|
|
|
|
} |
|
|
|
@ -1817,6 +1992,7 @@ const showdrawer = _flag => {
|
|
|
|
|
|
|
|
|
|
// 处理方数据公共函数 |
|
|
|
|
const ProcessingPartyFun = val => { |
|
|
|
|
ClaimStatus.value=false;//关闭理赔状态 |
|
|
|
|
details.query.workOrderStatus = null; |
|
|
|
|
details.loadingObj.list = true; //开启动画加载 |
|
|
|
|
let data = { |
|
|
|
@ -1843,33 +2019,33 @@ const ProcessingPartyFun = val => {
|
|
|
|
|
} |
|
|
|
|
// 对状态进行处理 |
|
|
|
|
if (item.workOrderType == 1) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[0].label; //货损 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[0].label; //货损 |
|
|
|
|
} else if (item.workOrderType == 2) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[1].label; //少货 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[1].label; //少货 |
|
|
|
|
} else if (item.workOrderType == 3) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[2].label; //窜货 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[2].label; //窜货 |
|
|
|
|
} else if (item.workOrderType == 4) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[3].label; //加急 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[3].label; //加急 |
|
|
|
|
} else if (item.workOrderType == 5) { |
|
|
|
|
item.workOrderTypeName = columnList[2].checkarr[4].label; //其他 |
|
|
|
|
item.workOrderTypeNameS = columnList[2].checkarr[4].label; //其他 |
|
|
|
|
} |
|
|
|
|
// 提货环节下拉赋值 |
|
|
|
|
if (item.discoveryNode == 1) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[0].label; //提货环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[0].label; //提货环节 |
|
|
|
|
} else if (item.discoveryNode == 2) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[1].label; //发货环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[1].label; //发货环节 |
|
|
|
|
} else if (item.discoveryNode == 3) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[2].label; //干线卸车环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[2].label; //干线卸车环节 |
|
|
|
|
} else if (item.discoveryNode == 4) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[3].label; //库内作业环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[3].label; //库内作业环节 |
|
|
|
|
} else if (item.discoveryNode == 5) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[4].label; //配送装车环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[4].label; //配送装车环节 |
|
|
|
|
} else if (item.discoveryNode == 6) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[5].label; //其他 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[5].label; //其他 |
|
|
|
|
} else if (item.discoveryNode == 7) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[6].label; //配送签收环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[6].label; //配送签收环节 |
|
|
|
|
} else if (item.discoveryNode == 8) { |
|
|
|
|
item.discoveryNodeName = columnList[3].checkarr[7].label; //安装环节 |
|
|
|
|
item.discoveryNodeNameS = columnList[3].checkarr[7].label; //安装环节 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
details.data = res.data.data.records; |
|
|
|
@ -1900,12 +2076,12 @@ const FKList = () => {
|
|
|
|
|
// 点击回复按钮 |
|
|
|
|
const reply = val => { |
|
|
|
|
$router.push({ |
|
|
|
|
path:'/aftersales/customerService', |
|
|
|
|
query:{ |
|
|
|
|
row:JSON.stringify(val.row), |
|
|
|
|
} |
|
|
|
|
path: '/aftersales/customerService', |
|
|
|
|
query: { |
|
|
|
|
row: JSON.stringify(val.row), |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
return |
|
|
|
|
return; |
|
|
|
|
console.log(val, 'ID++++++++'); |
|
|
|
|
console.log(val.row); |
|
|
|
|
dialogcustomerService.value = true; //开启回复弹窗 |
|
|
|
@ -2741,7 +2917,7 @@ const CompletedSubmission = () => {
|
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
:deep(.el-tab-pane){ |
|
|
|
|
:deep(.el-tab-pane) { |
|
|
|
|
padding: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2772,24 +2948,35 @@ const CompletedSubmission = () => {
|
|
|
|
|
display: flex; |
|
|
|
|
justify-content: flex-end; |
|
|
|
|
} |
|
|
|
|
:deep(.el_tabs){ |
|
|
|
|
:deep(.el_tabs) { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
.el-tabs__content{ |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
.el-tabs__content { |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
:deep(.avue-crud__pagination){ |
|
|
|
|
:deep(.avue-crud__pagination) { |
|
|
|
|
padding-top: 2px !important; |
|
|
|
|
} |
|
|
|
|
.arbitrate{ |
|
|
|
|
.arbitrate { |
|
|
|
|
margin-top: 36px; |
|
|
|
|
.el_btn{ |
|
|
|
|
.el_btn { |
|
|
|
|
margin-top: 10px; |
|
|
|
|
} |
|
|
|
|
:deep(.el-tabs__content){ |
|
|
|
|
:deep(.el-tabs__content) { |
|
|
|
|
padding: 0 !important; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.el_appeal { |
|
|
|
|
:deep(.el-select) { |
|
|
|
|
width: 100% !important; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.el_sdialog-footer { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: flex-end; |
|
|
|
|
margin-top: 10px; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|