|
|
|
@ -417,6 +417,15 @@
|
|
|
|
|
<el-button @click="Indexdialog = false">取消</el-button> |
|
|
|
|
<el-button type="primary" @click="ConfirmForm"> 提交 </el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="foot_btn"> |
|
|
|
|
<el-button type="primary" @click="addingRecord">新增记录</el-button> |
|
|
|
|
<el-button type="primary" @click="EndJump">完结 </el-button> |
|
|
|
|
<el-button type="primary" @click="ConfirmForm">打回 </el-button> |
|
|
|
|
<el-button type="primary" @click="CustomerServiceCompleted">客服仲裁完结 </el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<!-- <div v-if="routerState" class="foot_btn"> |
|
|
|
@ -507,6 +516,7 @@ import {
|
|
|
|
|
$_remove, |
|
|
|
|
$_getBusinessDepartmentUser, |
|
|
|
|
$_getAbnormalPackage, |
|
|
|
|
$_getInfo, |
|
|
|
|
} from '@/api/aftersales/aftersalesWorkOrder'; |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
@ -669,6 +679,103 @@ const onLoad = () => {
|
|
|
|
|
updateDictionary(IndexException.value, 'pc_work_order'); //异常类型 |
|
|
|
|
updateDictionary(DiscoveringNodes.value, 'pc_discovery_node'); //发现环节 |
|
|
|
|
handle(); //处理方和责任方信息 |
|
|
|
|
|
|
|
|
|
$_getInfo({ id: $route.query.id }).then(res => { |
|
|
|
|
console.log(res, '回显返回值参数'); |
|
|
|
|
endFrom.value = res.data.data; |
|
|
|
|
endFrom.value.result = []; |
|
|
|
|
endFrom.value.processor = []; |
|
|
|
|
endFrom.value.packageImage = []; |
|
|
|
|
//图片处理回显 |
|
|
|
|
res.data.data.decreaseImageVOList.forEach(res => { |
|
|
|
|
endFrom.value['packageImage'].push({ |
|
|
|
|
name: res.imageName, |
|
|
|
|
url: res.imagePath, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
// 包件回显 |
|
|
|
|
PackageInfo.value = res.data.data.abnormalPackageVOList |
|
|
|
|
.map(item => { |
|
|
|
|
let orderCodes = item.orderCode.split(','); |
|
|
|
|
let packageCodes = item.packageCode.split(','); |
|
|
|
|
let waybillNumbers = item.waybillNumber.split(','); |
|
|
|
|
|
|
|
|
|
return orderCodes.map((code, index) => ({ |
|
|
|
|
packageCode: packageCodes[index], |
|
|
|
|
orderCode: code, |
|
|
|
|
waybillNumber: waybillNumbers[index], |
|
|
|
|
})); |
|
|
|
|
}) |
|
|
|
|
.flat(); |
|
|
|
|
// 责任方回显 |
|
|
|
|
FangAddList.value = res.data.data.processorVOList |
|
|
|
|
.filter(item => item.typesOf == '1') |
|
|
|
|
.map(res => { |
|
|
|
|
return { |
|
|
|
|
businessName: res.businessId, |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
FangAddList.value = res.data.data.personResponsibleVOS.map(res => { |
|
|
|
|
return { |
|
|
|
|
businessName: res.businessId, //责任人ID |
|
|
|
|
personResponsibleName: res.personResponsibleName, //责任人名称 |
|
|
|
|
responsibilityRatio: res.responsibilityRatio, //占比 |
|
|
|
|
description: res.description, //说明 |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
res.data.data.processorVOList.forEach(item => { |
|
|
|
|
if (item.typesOf == 2) { |
|
|
|
|
// 处理方 |
|
|
|
|
endFrom.value.processor.push(item.businessId); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
console.log(endFrom.value.processor, ' endFrom.value.processor'); |
|
|
|
|
getDictionaryBiz('pc_work_order').then(res => { |
|
|
|
|
//处理结果字典 |
|
|
|
|
console.log(res, '环节字典'); |
|
|
|
|
endFrom.value.workOrderType = res.data.data.find( |
|
|
|
|
res => res.dictKey == endFrom.value.workOrderType |
|
|
|
|
).dictValue; //异常类型回显 |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
//发现环节回显 |
|
|
|
|
getDictionaryBiz('pc_discovery_node').then(res => { |
|
|
|
|
console.log(res, '发现环节'); |
|
|
|
|
// ProcessingResults.value = res.data.data; |
|
|
|
|
TransportlossList.value = res.data.data; |
|
|
|
|
console.log(TransportlossList.value, '处理好的发现环节'); |
|
|
|
|
// endFrom.discoveryNode |
|
|
|
|
}); |
|
|
|
|
getDictionaryBiz('result_handling').then(res => { |
|
|
|
|
console.log(res, '发现环节'); |
|
|
|
|
ProcessingResults.value = res.data.data; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 公司占比回显计算 |
|
|
|
|
let sum = 0; |
|
|
|
|
FangAddList.value.forEach(item => { |
|
|
|
|
sum = Number(item.responsibilityRatio) + sum; |
|
|
|
|
}); |
|
|
|
|
companyProportion.value = 100 - sum; |
|
|
|
|
|
|
|
|
|
// updateDictionary(columnList[2].checkarr, 'pc_work_order'); //异常类型 |
|
|
|
|
// updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //发现环节 |
|
|
|
|
|
|
|
|
|
// 处理结果回显 |
|
|
|
|
// res.data.data.processingResultsVO.processingMoneyEntityList.forEach(item => { |
|
|
|
|
// ProcessingList.value.push({ |
|
|
|
|
// input: item.money, |
|
|
|
|
// min: 0, |
|
|
|
|
// max: 9999999999999, |
|
|
|
|
// state: item.resultType, |
|
|
|
|
// payment: item.compensationMethod, |
|
|
|
|
// name: item.resultTypeName, |
|
|
|
|
// text: '', |
|
|
|
|
// }); |
|
|
|
|
// endFrom.value.result.push(item.resultType); |
|
|
|
|
// }); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
onLoad(); //初始化程序 |
|
|
|
|
// 异常类型事件 |
|
|
|
@ -1060,6 +1167,30 @@ const ViewPackageDetails = val => {
|
|
|
|
|
}); |
|
|
|
|
dialogHistoricalPackage.value = false; //打开历史包件弹窗 |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 新增记录跳转 |
|
|
|
|
const addingRecord = () => { |
|
|
|
|
$router.push({ |
|
|
|
|
path: '/aftersales/aftersalesWorkOrderend', |
|
|
|
|
query: { |
|
|
|
|
id: $route.query.id, |
|
|
|
|
name: $route.query.workOrderNumber + '-添加异常记录', |
|
|
|
|
businessId: $route.query.workOrderNumber, |
|
|
|
|
RouterState: 'record', |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
const EndJump = () => { |
|
|
|
|
$router.push({ |
|
|
|
|
path: '/aftersales/aftersalesWorkOrderend', |
|
|
|
|
query: { |
|
|
|
|
id: $route.query.id, |
|
|
|
|
name: $route.query.id + '-完结填写', |
|
|
|
|
RouterState: 'end', |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|