|
|
|
@ -695,6 +695,7 @@
|
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
:disabled="item.disabled" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</div> |
|
|
|
@ -1047,7 +1048,8 @@ const onLoad = () => {
|
|
|
|
|
sum = Number(item.responsibilityRatio) + sum; |
|
|
|
|
}); |
|
|
|
|
companyProportion.value = 100 - sum; |
|
|
|
|
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map( |
|
|
|
|
if(res.data.data.processingResultsVO.processingMoneyEntityList.length){ |
|
|
|
|
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map( |
|
|
|
|
item => { |
|
|
|
|
endFrom.value.result.push(item.resultType); |
|
|
|
|
return { |
|
|
|
@ -1061,6 +1063,8 @@ const onLoad = () => {
|
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 总金额回显 |
|
|
|
|
TotalClaimAmount.value = res.data.data.processingResultsVO.money; |
|
|
|
@ -1087,7 +1091,7 @@ const onLoad = () => {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 赔款方 |
|
|
|
|
if (res.data.data.completionRecordEntities.length > 0) { |
|
|
|
|
if (res.data.data.completionRecordEntities.length) { |
|
|
|
|
res.data.data.completionRecordEntities.forEach((item, index) => { |
|
|
|
|
TotalamountCompensation.value += Number(item.money); |
|
|
|
|
CompensationParty.value.push({ |
|
|
|
@ -1129,11 +1133,16 @@ const onLoad = () => {
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
getDeptWarehouse({}).then(res => { |
|
|
|
|
// 验证本地仓库用于回复选择,自己不能选择自己仓库 |
|
|
|
|
console.log(res, '处理方'); |
|
|
|
|
localStorage.getItem('WarehouseName') |
|
|
|
|
console.log(localStorage.getItem('WarehouseName'),'当前本地仓库'); |
|
|
|
|
|
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
|
warehouseData.value.push({ |
|
|
|
|
value: item.id, |
|
|
|
|
label: item.name, |
|
|
|
|
disabled:item.name==localStorage.getItem('WarehouseName') |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|