|
|
|
@ -40,7 +40,7 @@
|
|
|
|
|
<el-button v-if="item.state" type="primary" @click="historicalPackages(index)"> |
|
|
|
|
查看历史包件 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button type="primary" @click="PackagRemoval(index)"> 移除 </el-button> |
|
|
|
|
<el-button type="primary" @click="PackagRemoval(index, item)"> 移除 </el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="NumTotal"> |
|
|
|
@ -49,7 +49,13 @@
|
|
|
|
|
</div> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
<el-form :disabled="RouterState=='false'" :model="Indexform" label-width="100px" class="IndexFrom" ref="IndexForm"> |
|
|
|
|
<el-form |
|
|
|
|
:disabled="RouterState == 'false'" |
|
|
|
|
:model="Indexform" |
|
|
|
|
label-width="100px" |
|
|
|
|
class="IndexFrom" |
|
|
|
|
ref="IndexForm" |
|
|
|
|
> |
|
|
|
|
<el-form-item label="异常类型"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="Indexform.workOrderType" |
|
|
|
@ -120,9 +126,7 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item |
|
|
|
|
label="发现时间" |
|
|
|
|
> |
|
|
|
|
<el-form-item label="发现时间"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="Indexform.discoveryTime" |
|
|
|
|
type="datetime" |
|
|
|
@ -132,8 +136,7 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item |
|
|
|
|
label="配送时间"> |
|
|
|
|
<el-form-item label="配送时间"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="Indexform.deliveryTime" |
|
|
|
|
type="datetime" |
|
|
|
@ -143,8 +146,7 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item |
|
|
|
|
label="入库时间"> |
|
|
|
|
<el-form-item label="入库时间"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="Indexform.warehousingTime" |
|
|
|
|
type="datetime" |
|
|
|
@ -302,7 +304,9 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="el-btn"> |
|
|
|
|
<el-button type="primary" @click="ResponsibilityRemoval(index)"> 移除 </el-button> |
|
|
|
|
<el-button type="primary" @click="ResponsibilityRemoval(index, item)"> |
|
|
|
|
移除 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="Proportion"> |
|
|
|
@ -446,7 +450,6 @@
|
|
|
|
|
</el-tabs> |
|
|
|
|
</div> |
|
|
|
|
<div class="Transport_damage_photos"> |
|
|
|
|
|
|
|
|
|
<el-upload |
|
|
|
|
v-model:file-list="Indexform.packageImage" |
|
|
|
|
list-type="picture-card" |
|
|
|
@ -591,13 +594,14 @@ const TotalamountCompensation = ref(0); //赔款金额合计
|
|
|
|
|
const TotalamountReceived = ref(0); //收款金额合计 |
|
|
|
|
const Indexform = ref({ |
|
|
|
|
packList: [], |
|
|
|
|
packageImage: [], //图片列表 |
|
|
|
|
decreaseImageEntityList: [], //处理好的图片数据 |
|
|
|
|
}); //首页新增表单 |
|
|
|
|
const IndexException = ref([]); //异常类型下拉选择 |
|
|
|
|
const ProcessingList = ref([]); //处理结果已经选择的列表 |
|
|
|
|
const DiscoveringNodes = ref([]); //发现节点下拉选择 |
|
|
|
|
const warehouseData = ref([]); //处理方 |
|
|
|
|
const SelectType = ref(null); //类型 |
|
|
|
|
const SelectType = ref(); //类型 |
|
|
|
|
const StateType = ref(true); //类型 |
|
|
|
|
const HistoricalPackageinput = ref(''); //历史包件选择 |
|
|
|
|
const dialogImageUrl = ref(null); //图片 |
|
|
|
@ -624,13 +628,20 @@ const ProcessingResults = ref([]); //处理结果列表选项
|
|
|
|
|
const TotalClaimAmount = ref(0); //理赔总金额 |
|
|
|
|
const TransportlossList = ref([]); |
|
|
|
|
const RouterState = ref(null); //编辑信息 |
|
|
|
|
const oldData = ref(); //旧数据 |
|
|
|
|
const unPackageInfo = ref(); //旧包件信息 |
|
|
|
|
const unProcessorEntityList = ref([]); //取消的责任方 |
|
|
|
|
const deletePackageInfo = ref([]); //被删除的包间信息 |
|
|
|
|
const unDecreaseImageEntityList = ref([]); //移除的货损图片 |
|
|
|
|
const NewImageAddress = ref([]); //旧的片地址 |
|
|
|
|
const InitialresponsibleParty = ref(); //初始的责任方 |
|
|
|
|
const CompensationParty = ref([ |
|
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, explains: '' }, //赔款方 |
|
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, explains: '' }, //收款方 |
|
|
|
|
]); //收/赔 |
|
|
|
|
const PackageInfo = ref([ |
|
|
|
|
//包件信息 |
|
|
|
|
{ packageCode: '', orderCode: '', waybillNumber: '' }, |
|
|
|
|
{ packageCode: '', orderCode: '', waybillNumber: '', state: 0 }, |
|
|
|
|
]); |
|
|
|
|
// 责任方列表 |
|
|
|
|
const FangAddList = ref([ |
|
|
|
@ -692,14 +703,7 @@ const doubledCount = computed(() => {
|
|
|
|
|
|
|
|
|
|
// 图片上传成功回调函数 |
|
|
|
|
const ImgSuccess = (response, uploadFile) => { |
|
|
|
|
if (response.success === true) { |
|
|
|
|
console.log(response); |
|
|
|
|
Indexform.value['packList'].push({ |
|
|
|
|
name: response.data.originalName, |
|
|
|
|
url: response.data.link, |
|
|
|
|
}); |
|
|
|
|
console.log(Indexform.value['packList'], '图片列表'); |
|
|
|
|
} |
|
|
|
|
console.log(Indexform.value['packageImage'], '图片列表'); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 上传图片规则 |
|
|
|
@ -719,6 +723,7 @@ const pictureList = val => {
|
|
|
|
|
}; |
|
|
|
|
// 点击图片移除 |
|
|
|
|
const ImgListRemove = val => { |
|
|
|
|
unDecreaseImageEntityList.value.push(val); //移除的图片 |
|
|
|
|
console.log(val, '移除图片'); |
|
|
|
|
}; |
|
|
|
|
// 处理方和责任方获取数据 |
|
|
|
@ -766,6 +771,8 @@ const onLoad = () => {
|
|
|
|
|
handle(); //处理方和责任方信息 |
|
|
|
|
|
|
|
|
|
$_getInfo({ id: $route.query.id }).then(res => { |
|
|
|
|
oldData.value = JSON.parse(JSON.stringify(res.data.data)); |
|
|
|
|
console.log(oldData.value, '旧数据'); |
|
|
|
|
console.log(res, '回显返回值参数'); |
|
|
|
|
Indexform.value = res.data.data; |
|
|
|
|
Indexform.value.result = []; |
|
|
|
@ -778,20 +785,13 @@ const onLoad = () => {
|
|
|
|
|
url: res.imagePath, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
NewImageAddress.value = JSON.parse(JSON.stringify(Indexform.value['packageImage'])); //拷贝一份固定数据 |
|
|
|
|
// 包件回显 |
|
|
|
|
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(); |
|
|
|
|
PackageInfo.value = res.data.data.abnormalPackageVOList; |
|
|
|
|
|
|
|
|
|
unPackageInfo.value = JSON.parse(JSON.stringify(PackageInfo.value)); //拷贝一份旧的包件信息 |
|
|
|
|
console.log(unPackageInfo.value, '包件信息'); |
|
|
|
|
// 责任方回显 |
|
|
|
|
FangAddList.value = res.data.data.processorVOList |
|
|
|
|
.filter(item => item.typesOf == '1') |
|
|
|
@ -810,6 +810,7 @@ const onLoad = () => {
|
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
InitialresponsibleParty.value = JSON.parse(JSON.stringify(FangAddList.value)); //拷贝一份责任方 |
|
|
|
|
res.data.data.processorVOList.forEach(item => { |
|
|
|
|
if (item.typesOf == 2) { |
|
|
|
|
// 处理方 |
|
|
|
@ -841,19 +842,23 @@ const onLoad = () => {
|
|
|
|
|
sum = Number(item.responsibilityRatio) + sum; |
|
|
|
|
}); |
|
|
|
|
companyProportion.value = 100 - sum; |
|
|
|
|
|
|
|
|
|
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(item => { |
|
|
|
|
Indexform.value.result.push(item.resultType); |
|
|
|
|
return { |
|
|
|
|
input: item.money, |
|
|
|
|
min: 0, |
|
|
|
|
max: 9999999999999999999999999999, |
|
|
|
|
state: item.resultType, |
|
|
|
|
payment: item.compensationMethod, |
|
|
|
|
name: item.resultTypeName, |
|
|
|
|
text: item.compensationMethodName, |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
// 赔付方式 |
|
|
|
|
if (res.data.data.processingResultsVO.processingMoneyEntityList) { |
|
|
|
|
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map( |
|
|
|
|
item => { |
|
|
|
|
Indexform.value.result.push(item.resultType); |
|
|
|
|
return { |
|
|
|
|
input: item.money, |
|
|
|
|
min: 0, |
|
|
|
|
max: 9999999999999999999999999999, |
|
|
|
|
state: item.resultType, |
|
|
|
|
payment: item.compensationMethod, |
|
|
|
|
name: item.resultTypeName, |
|
|
|
|
text: item.compensationMethodName, |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 总金额回显 |
|
|
|
|
TotalClaimAmount.value = res.data.data.processingResultsVO.money; |
|
|
|
@ -861,8 +866,9 @@ const onLoad = () => {
|
|
|
|
|
Indexform.value.compensationTime = res.data.data.processingResultsVO.compensationTime; |
|
|
|
|
// 处理结果说明回显 |
|
|
|
|
Indexform.value.resultDescription = res.data.data.processingResultsVO.resultDescription; |
|
|
|
|
// 收款方 |
|
|
|
|
CompensationParty.value = []; |
|
|
|
|
// 收款方 |
|
|
|
|
CompensationParty.value = []; |
|
|
|
|
if (res.data.data.completionRecipientEntityList) { |
|
|
|
|
if (res.data.data.completionRecipientEntityList.length > 0) { |
|
|
|
|
res.data.data.completionRecipientEntityList.forEach((item, index) => { |
|
|
|
|
TotalamountReceived.value += Number(item.money); |
|
|
|
@ -876,6 +882,8 @@ const onLoad = () => {
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (res.data.data.completionRecordEntities) { |
|
|
|
|
// 赔款方 |
|
|
|
|
if (res.data.data.completionRecordEntities.length > 0) { |
|
|
|
|
res.data.data.completionRecordEntities.forEach((item, index) => { |
|
|
|
@ -890,6 +898,13 @@ const onLoad = () => {
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 异常类型下标 |
|
|
|
|
SelectType.value = IndexException.value.find( |
|
|
|
|
item => item.value == Indexform.value.workOrderType |
|
|
|
|
).value; |
|
|
|
|
console.log(SelectType.value, '异常类型'); |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
onLoad(); //初始化程序 |
|
|
|
@ -944,10 +959,12 @@ const handlePictureCardPreview = uploadFile => {
|
|
|
|
|
|
|
|
|
|
// 添加包件 |
|
|
|
|
const AddPackage = () => { |
|
|
|
|
PackageInfo.value.push({ packageCode: '', orderCode: '', waybillNumber: '' }); |
|
|
|
|
PackageInfo.value.push({ packageCode: '', orderCode: '', waybillNumber: '', state: 1 }); |
|
|
|
|
}; |
|
|
|
|
// 包件移除 |
|
|
|
|
const PackagRemoval = val => { |
|
|
|
|
const PackagRemoval = (val, item) => { |
|
|
|
|
deletePackageInfo.value.push(item); |
|
|
|
|
console.log(deletePackageInfo.value, '移除包件'); |
|
|
|
|
PackageInfo.value.splice(val, 1); //移除当前点击的按钮 |
|
|
|
|
}; |
|
|
|
|
// 责任方添加 |
|
|
|
@ -960,7 +977,9 @@ const responsibleParty = () => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 责任移除 |
|
|
|
|
const ResponsibilityRemoval = val => { |
|
|
|
|
const ResponsibilityRemoval = (val, item) => { |
|
|
|
|
unProcessorEntityList.value.push(item); |
|
|
|
|
console.log(unProcessorEntityList.value, '移除责任方'); |
|
|
|
|
FangAddList.value.splice(val, 1); //移除当前点击的按钮 |
|
|
|
|
}; |
|
|
|
|
// 顶部标签切换 |
|
|
|
@ -1122,30 +1141,122 @@ const payremove = (state, val) => {
|
|
|
|
|
}; |
|
|
|
|
//表单提交 |
|
|
|
|
const ConfirmForm = () => { |
|
|
|
|
let DataSubmit={ |
|
|
|
|
packageEntityList:[],//新增的包件信息 |
|
|
|
|
unPpackageEntityList:[],//取消的包件ID |
|
|
|
|
processorEntityList:[],//新增的责任方和处理方 |
|
|
|
|
unProcessorEntityList:[],//取消的责任方和处理方 |
|
|
|
|
decreaseImageEntityList:[],//损货图片 |
|
|
|
|
unDecreaseImageEntityList:[],//取消的损货图片 |
|
|
|
|
completionRecipientEntities:[],//异常工单完结收款方 |
|
|
|
|
completionRecordEntities:[],//异常工单完结赔款方 |
|
|
|
|
aftersalesProcessingResultsDTO:{ |
|
|
|
|
|
|
|
|
|
},//处理结果 |
|
|
|
|
personResponsibleDTO:[],//添加预计责任人 |
|
|
|
|
unPersonResponsibleDTO:[],//取消预计责任人 |
|
|
|
|
surveyRecordDTO:{ |
|
|
|
|
|
|
|
|
|
},//调查经过 |
|
|
|
|
...Indexform.value |
|
|
|
|
// console.log(oldData.value,'查看老数据'); |
|
|
|
|
// ...Indexform.value |
|
|
|
|
let DataSubmit = { |
|
|
|
|
packageEntityList: [], //新增的包件信息 (完成) |
|
|
|
|
unPpackageEntityList: [], //取消的包件ID(完成) |
|
|
|
|
|
|
|
|
|
processorEntityList: [], //新增的责任方和处理方 |
|
|
|
|
unProcessorEntityList: [], //取消的责任方和处理方 |
|
|
|
|
|
|
|
|
|
decreaseImageEntityList: [], //损货图片 (完成) |
|
|
|
|
unDecreaseImageEntityList: [], //取消的损货图片(完成) |
|
|
|
|
completionRecipientEntities: [], //异常工单完结收款方 |
|
|
|
|
completionRecordEntities: [], //异常工单完结赔款方 |
|
|
|
|
aftersalesProcessingResultsDTO: {}, //处理结果 |
|
|
|
|
|
|
|
|
|
personResponsibleDTO: [], //添加预计责任人 |
|
|
|
|
unPersonResponsibleDTO: [], //取消预计责任人 |
|
|
|
|
|
|
|
|
|
surveyRecordDTO: {}, //调查经过 |
|
|
|
|
}; |
|
|
|
|
DataSubmit.id = $route.query.id; //任务 |
|
|
|
|
|
|
|
|
|
let Modified = PackageInfo.value.filter( |
|
|
|
|
objB => !unPackageInfo.value.some(objA => JSON.stringify(objA) === JSON.stringify(objB)) |
|
|
|
|
); //修改过的包件信息 |
|
|
|
|
|
|
|
|
|
if (Modified.length) { |
|
|
|
|
// 如果有修改过包件信息执行 |
|
|
|
|
Modified.forEach(item => { |
|
|
|
|
deletePackageInfo.value.push(item); //被修改过的放入删除里面 |
|
|
|
|
console.log(item); |
|
|
|
|
DataSubmit['packageEntityList'].push({ |
|
|
|
|
id: $route.query.id, |
|
|
|
|
number: Modified.length, //数量 |
|
|
|
|
packageCode: item.packageCode, //包件码 |
|
|
|
|
warehouseId: $route.query.warehouseId == '/' ? '' : $route.query.warehouseId, //仓库ID |
|
|
|
|
waybillNumber: item.waybillNumber, //运单号 |
|
|
|
|
orderCode: item.orderCode, //订单自编码 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let addedImages = Indexform.value['packageImage'].filter( |
|
|
|
|
image => !NewImageAddress.value.some(existingImage => existingImage.url === image.url) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// 添加的图片图片类型:10运损,20窜货 |
|
|
|
|
if (SelectType.value == '1' || SelectType.value == '3') { |
|
|
|
|
if (addedImages.length) { |
|
|
|
|
addedImages.forEach(item => { |
|
|
|
|
DataSubmit['decreaseImageEntityList'].push({ |
|
|
|
|
imageType: SelectType.value == '1' ? 10 : SelectType.value == '3' ? 20 : '', |
|
|
|
|
imageName: item.name, |
|
|
|
|
imagePath: item.response.data.link, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
console.log(DataSubmit, '处理好的数据'); |
|
|
|
|
|
|
|
|
|
$_modifyData(DataSubmit).then(res=>{ |
|
|
|
|
console.log(res,'编辑成功返回值'); |
|
|
|
|
// 取消的图片 |
|
|
|
|
if (SelectType.value == '1' || SelectType.value == '3') { |
|
|
|
|
if (unDecreaseImageEntityList.value.length) { |
|
|
|
|
unDecreaseImageEntityList.value.forEach(item => { |
|
|
|
|
DataSubmit['unDecreaseImageEntityList'].push({ |
|
|
|
|
imageType: SelectType.value == '1' ? 10 : SelectType.value == '3' ? 20 : '', |
|
|
|
|
imageName: item.name, |
|
|
|
|
imagePath: item.url, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 移除的包件ID |
|
|
|
|
DataSubmit['unPpackageEntityList'] = deletePackageInfo.value.map(item => item.id); |
|
|
|
|
|
|
|
|
|
// 旧的 InitialresponsibleParty |
|
|
|
|
|
|
|
|
|
// 新的 FangAddList |
|
|
|
|
|
|
|
|
|
// 添加的责任方处理 |
|
|
|
|
let modifyresponsibility = FangAddList.value.filter( |
|
|
|
|
objB => |
|
|
|
|
!InitialresponsibleParty.value.some(objA => JSON.stringify(objA) === JSON.stringify(objB)) |
|
|
|
|
); |
|
|
|
|
console.log(modifyresponsibility, '发送改变的责任方'); |
|
|
|
|
modifyresponsibility.forEach(item => { |
|
|
|
|
DataSubmit['personResponsibleDTO'].push({ |
|
|
|
|
wordOrderId: Indexform.value.workOrderNumber, //工单异常ID |
|
|
|
|
personResponsibleId:personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.id || null, //责任人ID |
|
|
|
|
personResponsibleName:personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.name || null, //责任人名称 |
|
|
|
|
businessId: warehouseData.value.find(obj => obj.value == item.businessName)?.value || null, //责任方ID |
|
|
|
|
businessName:warehouseData.value.find(obj => obj.value == item.businessName)?.label || null, //责任方名称//责任方名称 |
|
|
|
|
responsibilityRatio:item.responsibilityRatio, //责任比例 |
|
|
|
|
description: item.description, //说明 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
// 被移除的责任方处理 |
|
|
|
|
if(unProcessorEntityList.value.length){ |
|
|
|
|
unProcessorEntityList.value.forEach(item=>{ |
|
|
|
|
DataSubmit['unPersonResponsibleDTO'].push({ |
|
|
|
|
wordOrderId: Indexform.value.workOrderNumber, //工单异常ID |
|
|
|
|
personResponsibleId:personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.id || null, //责任人ID |
|
|
|
|
personResponsibleName:personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.name || null, //责任人名称 |
|
|
|
|
businessId: warehouseData.value.find(obj => obj.value == item.businessName)?.value || null, //责任方ID |
|
|
|
|
businessName:warehouseData.value.find(obj => obj.value == item.businessName)?.label || null, //责任方名称//责任方名称 |
|
|
|
|
responsibilityRatio:item.responsibilityRatio, //责任比例 |
|
|
|
|
description: item.description, //说明 |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//移除的货损图片 |
|
|
|
|
console.log(DataSubmit, '处理好的数据'); |
|
|
|
|
// $_modifyData(DataSubmit).then(res => { |
|
|
|
|
// console.log(res, '编辑成功返回值'); |
|
|
|
|
// }); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 客服仲裁完结 |
|
|
|
@ -1154,7 +1265,7 @@ const Arbitrationcompleted = () => {
|
|
|
|
|
id: $route.query.id, |
|
|
|
|
completionRecipientEntities: [], //处理结果收款方 |
|
|
|
|
completionRecordEntities: [], //处理结果赔款方 |
|
|
|
|
reasonArbitration:Indexform.value.arbitrate, //仲裁原因 |
|
|
|
|
reasonArbitration: Indexform.value.arbitrate, //仲裁原因 |
|
|
|
|
aftersalesProcessingResultsDTO: { |
|
|
|
|
workOrderId: '', //异常工单ID |
|
|
|
|
}, |
|
|
|
@ -1167,7 +1278,7 @@ const Arbitrationcompleted = () => {
|
|
|
|
|
indemnitor: item.name, //赔款方 |
|
|
|
|
reason: item.reason, //原因 |
|
|
|
|
money: Number(item.num), //金额 |
|
|
|
|
reasonArbitration:item.reason,//说明 |
|
|
|
|
reasonArbitration: item.reason, //说明 |
|
|
|
|
workOrderId: $route.query.id, //异常工单 |
|
|
|
|
warehouseId: $route.query.warehouseId, //仓库ID |
|
|
|
|
}); |
|
|
|
|