|
|
|
@ -959,7 +959,7 @@ const onLoad = async () => {
|
|
|
|
|
await updateDictionary(Processingresultsoptions.value, 'result_handling'); //理赔选择 |
|
|
|
|
await Handling(); //获取处理方和责任方 |
|
|
|
|
await PageState(); //页面基础数据处理 |
|
|
|
|
// form.value.Pageloading = false; //关闭页面加载 |
|
|
|
|
form.value.Pageloading = false; //关闭页面加载 |
|
|
|
|
}; |
|
|
|
|
onLoad(); |
|
|
|
|
const ProcessingState = computed(() => { |
|
|
|
@ -1632,16 +1632,14 @@ const onSubmit = () => {
|
|
|
|
|
submitData.aftersalesProcessingResultsDTO['processingMoneyEntityList'].push({ |
|
|
|
|
compensationMethodName: item.Paymentmethod.find( |
|
|
|
|
res => res.value == item.compensationMethod |
|
|
|
|
).label, //支付方式名称 |
|
|
|
|
)?.label ||'', //支付方式名称 |
|
|
|
|
compensationMethod: item.compensationMethod, //支付方式value |
|
|
|
|
compensationTime: item.compensationTime, //支付时间 |
|
|
|
|
money: item.money, //支付金额 |
|
|
|
|
paymentUnit: item.paymentUnit, //支付单位 |
|
|
|
|
resultName: item.title, //处理结果方式 下补单 |
|
|
|
|
resultType: ProcessingresultsoptiTons.value.find(res => res.label == item.title) |
|
|
|
|
.value, //处理结果方式 value |
|
|
|
|
resultType: resultTypeValue ? resultypeValue.value : null, //处理结果方式 value |
|
|
|
|
typesOf: 1, //固定参数 |
|
|
|
|
resultType: resultTypeValue ? resultTypeValue : null, //处理结果方式 value |
|
|
|
|
typesOf: 1, //固定参数 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
submitData.aftersalesProcessingResultsDTO.resultType = form.value.Claimamount.map( |
|
|
|
@ -1671,6 +1669,7 @@ const onSubmit = () => {
|
|
|
|
|
//移除责任方表单(必须) |
|
|
|
|
delete submitData.processor; |
|
|
|
|
console.log(submitData, '处理好的参数'); |
|
|
|
|
return |
|
|
|
|
$_submit(submitData) |
|
|
|
|
.then(res => { |
|
|
|
|
ElMessage({ |
|
|
|
|