|
|
|
@ -622,7 +622,7 @@
|
|
|
|
|
<template #label> |
|
|
|
|
<span class="custom-tabs-label"> |
|
|
|
|
<el-icon><calendar /></el-icon> |
|
|
|
|
<span>完结原因</span> |
|
|
|
|
<span>仲裁原因</span> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -630,7 +630,7 @@
|
|
|
|
|
v-model="Indexform.arbitrate" |
|
|
|
|
type="textarea" |
|
|
|
|
:autosize="{ minRows: 5, maxRows: 4 }" |
|
|
|
|
placeholder="请输入完结原因" |
|
|
|
|
placeholder="请输入仲裁原因" |
|
|
|
|
:disabled="ProcessingresultsState" |
|
|
|
|
/> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -821,7 +821,7 @@ import { computeNumber, isNumber } from '@/utils/util';
|
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import error from '@/error'; |
|
|
|
|
const $router = useRouter(); |
|
|
|
|
const $store = useStore(); |
|
|
|
|
const $useStore = useStore(); |
|
|
|
|
const $route = useRoute(); |
|
|
|
|
const TotalamountCompensation = ref(0); //赔款金额合计 |
|
|
|
|
const TotalamountReceived = ref(0); //收款金额合计 |
|
|
|
@ -1067,6 +1067,7 @@ const ResponsiblePartychange = (val, index) => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const onLoad = () => { |
|
|
|
|
editloading.value=true;//开启页面加载 |
|
|
|
|
RouterState.value = $route.query.RouterState; |
|
|
|
|
console.log($route.query.Appealeditor, '申诉==='); |
|
|
|
|
if ($route.query.Appealeditor) { |
|
|
|
@ -1082,10 +1083,14 @@ const onLoad = () => {
|
|
|
|
|
} |
|
|
|
|
// 判断是否为理赔金未出编辑 |
|
|
|
|
if ($route.query.ProcessingresultsState && UserPermissions.value != '仓库客服') { |
|
|
|
|
console.log($route.query.Processingresults, '理赔金未出编辑'); |
|
|
|
|
if($route.query.AppealEstablished==true){ |
|
|
|
|
ProcessingresultsState.value = true; |
|
|
|
|
}else{ |
|
|
|
|
ProcessingresultsState.value = false; |
|
|
|
|
} |
|
|
|
|
console.log($route.query.Processingresults, '理赔金未出编辑'); |
|
|
|
|
} else { |
|
|
|
|
ProcessingresultsState.value = true; |
|
|
|
|
ProcessingresultsState.value = false; |
|
|
|
|
} |
|
|
|
|
// 客服完结完结提交(完结信息) |
|
|
|
|
if ($route.query.CustomerServiceCompleted && UserPermissions.value != '仓库客服') { |
|
|
|
@ -1138,7 +1143,6 @@ const onLoad = () => {
|
|
|
|
|
console.log(res); |
|
|
|
|
Paymentmethod.value = res.data.data; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
console.log($route.query.id, '页面初始化'); |
|
|
|
|
routerState.value = $route.query.routerState; |
|
|
|
|
updateDictionary(IndexException.value, 'pc_work_order'); //异常类型 |
|
|
|
@ -1362,6 +1366,7 @@ const onLoad = () => {
|
|
|
|
|
).value; |
|
|
|
|
console.log(SelectType.value, '异常类型'); |
|
|
|
|
Statistics(); |
|
|
|
|
editloading.value=false;//关闭页面加载 |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
onLoad(); //初始化程序 |
|
|
|
@ -2011,6 +2016,17 @@ const ConfirmForm = () => {
|
|
|
|
|
|
|
|
|
|
// 申诉成立编辑 |
|
|
|
|
const AppealEditor = () => { |
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm( |
|
|
|
|
'是否确认申诉成立编辑提交?', |
|
|
|
|
'提示', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(() => { |
|
|
|
|
// 申诉下面的编辑完结信息 |
|
|
|
|
if ($route.query.AppealEstablished) { |
|
|
|
|
editloading.value = true; //开启加载效果 |
|
|
|
@ -2079,7 +2095,12 @@ const AppealEditor = () => {
|
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
$store.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
$useStore.commit('EDIT_REFRESHITEM', { |
|
|
|
|
title: 'aftersalesWorkOrder', |
|
|
|
|
status: true, |
|
|
|
|
}); |
|
|
|
|
$useStore.commit('Customer_Menu',6);//要刷新的菜单 |
|
|
|
|
$useStore.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
$router.push({ |
|
|
|
|
//跳转到首页 |
|
|
|
|
path: '/aftersales/aftersalesWorkOrder', |
|
|
|
@ -2090,8 +2111,9 @@ const AppealEditor = () => {
|
|
|
|
|
editloading.value = false; //关闭加载效果 |
|
|
|
|
}); |
|
|
|
|
console.log('申诉下面编辑完结信息'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}) |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 理赔金未出编辑 |
|
|
|
@ -2387,7 +2409,7 @@ const Arbitrationcompleted = () => {
|
|
|
|
|
// message: res.data.msg, |
|
|
|
|
// type: 'success', |
|
|
|
|
// }); |
|
|
|
|
// $store.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
// $useStore.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
// $router.push({ |
|
|
|
|
// //跳转到首页 |
|
|
|
|
// path: '/aftersales/aftersalesWorkOrder', |
|
|
|
@ -2563,7 +2585,7 @@ const Arbitrationcompleted = () => {
|
|
|
|
|
// // message: res.data.msg, |
|
|
|
|
// // type: 'success', |
|
|
|
|
// // }); |
|
|
|
|
// // $store.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
// // $useStore.commit('DEL_TAG_CURRENT'); //关闭当前页面 |
|
|
|
|
// // $router.push({ |
|
|
|
|
// // //跳转到首页 |
|
|
|
|
// // path: '/aftersales/aftersalesWorkOrder', |
|
|
|
@ -3286,4 +3308,9 @@ const isShowFormItem2 = computed(() => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
:deep(.el-loading-mask) { |
|
|
|
|
position: fixed; |
|
|
|
|
left: 12%; |
|
|
|
|
top: 10%; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|