Browse Source

修复客服新增问题

pre-production
马远东 4 months ago
parent
commit
fe6887f158
  1. 11
      src/views/aftersales/aftersalesWorkOrderAdd.vue

11
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -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({

Loading…
Cancel
Save