|
|
|
@ -2,7 +2,9 @@
|
|
|
|
|
<el-card class="box-card"> |
|
|
|
|
<template #header> |
|
|
|
|
<div class="card-header"> |
|
|
|
|
<span>{{$route.query.index=='0'?'回复': $route.query.index=='1'?'新增记录':'完结' }}</span> |
|
|
|
|
<span>{{ |
|
|
|
|
$route.query.index == '0' ? '回复' : $route.query.index == '1' ? '新增记录' : '完结' |
|
|
|
|
}}</span> |
|
|
|
|
<!-- <el-button class="button" v-if="$route.query.index=='1' || $route.query.index=='2'" @click="submit">提交</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -27,7 +29,7 @@
|
|
|
|
|
</el-form-item> --> |
|
|
|
|
|
|
|
|
|
<!-- <div class="selector"> --> |
|
|
|
|
<div class="el-form-item el_lab" > |
|
|
|
|
<div class="el-form-item el_lab"> |
|
|
|
|
<span class="el-form-item__label">运损节点</span> |
|
|
|
|
<el-select |
|
|
|
|
v-model="endFrom.discoveryNode" |
|
|
|
@ -105,7 +107,7 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item> </el-form-item> |
|
|
|
|
<el-form-item label="" class="el_lab"> </el-form-item> |
|
|
|
|
<div class="el_dcl"> |
|
|
|
|
<!-- <div class="selector"> |
|
|
|
|
<div class="el-form-item"> |
|
|
|
@ -211,7 +213,7 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="NumTotal"> |
|
|
|
|
<span>总件数:{{ endFrom.number }}</span> |
|
|
|
|
<span>总件数:{{ PackageInfo.length }}</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-tab-pane> |
|
|
|
@ -333,40 +335,45 @@
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="payanindemnity" v-for="(item, index) in CompensationParty" :key="index"> |
|
|
|
|
<div class="el_pklab"> |
|
|
|
|
<span class="title" :style="{ color: item.state != 0 ? '#000' : '#F56C6C' }" |
|
|
|
|
>{{ item.state == 0 ? '赔款方' : '收款方' }}{{ item.cld }}</span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="el_pkLi"> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="item.name" |
|
|
|
|
:placeholder="item.state == 0 ? '请填写赔款方' : '请填写收款方'" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input v-model="item.reason" placeholder="请填写原因" /> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input @input="amountMoney" :min="0" v-model="item.num" placeholder="金额" /> |
|
|
|
|
<div class="el_pklab"> |
|
|
|
|
<span class="title" :style="{ color: item.state != 0 ? '#000' : '#F56C6C' }" |
|
|
|
|
>{{ item.state == 0 ? '赔款方' : '收款方' }}{{ item.cld }}</span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="sk_input" v-if="item.state == 0"> |
|
|
|
|
<el-input v-model="item.explain" placeholder="请填写说明" /> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input" v-if="item.state == 1"> |
|
|
|
|
<!-- <el-input v-model="item.explain" placeholder="请填写说明" /> --> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_cwBtn"> |
|
|
|
|
<el-button type="primary" v-if="item.state == 0"> 财务处理 </el-button> |
|
|
|
|
<el-button type="primary" @click="payremove(item.state, index)"> |
|
|
|
|
移除 |
|
|
|
|
</el-button> |
|
|
|
|
<div class="el_pkLi"> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="item.name" |
|
|
|
|
:placeholder="item.state == 0 ? '请填写赔款方' : '请填写收款方'" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input v-model="item.reason" placeholder="请填写原因" /> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input"> |
|
|
|
|
<el-input |
|
|
|
|
@input="amountMoney" |
|
|
|
|
:min="0" |
|
|
|
|
v-model="item.num" |
|
|
|
|
placeholder="金额" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="sk_input" v-if="item.state == 0"> |
|
|
|
|
<el-input v-model="item.explains" placeholder="请填写说明" /> |
|
|
|
|
</div> |
|
|
|
|
<div class="sk_input" v-if="item.state == 1"> |
|
|
|
|
<!-- <el-input v-model="item.explain" placeholder="请填写说明" /> --> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_cwBtn"> |
|
|
|
|
<el-button type="primary" v-if="item.state == 0"> 财务处理 </el-button> |
|
|
|
|
<el-button type="primary" @click="payremove(item.state, index)"> |
|
|
|
|
移除 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="paySum"> |
|
|
|
|
<span> |
|
|
|
|
<el-icon><Coin /></el-icon>赔款金额总和:<b>{{ |
|
|
|
@ -391,7 +398,7 @@
|
|
|
|
|
:reserve-keyword="false" |
|
|
|
|
placeholder="请选择处理结果" |
|
|
|
|
@change="changeProcessingResults" |
|
|
|
|
:disabled="$route.query.index=='0' || $route.query.index=='2'" |
|
|
|
|
:disabled="$route.query.index == '0' || $route.query.index == '2'" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in ProcessingResults" |
|
|
|
@ -413,6 +420,7 @@
|
|
|
|
|
:min="item.min" |
|
|
|
|
:max="item.max" |
|
|
|
|
@change="TotalChange" |
|
|
|
|
:disabled="$route.query.index == '0' || $route.query.index == '2'" |
|
|
|
|
/> |
|
|
|
|
<div class="Paymentname" @click="PaymentSelection(item)"> |
|
|
|
|
{{ item.payment ? item.text : '支付方式' }} |
|
|
|
@ -452,31 +460,32 @@
|
|
|
|
|
type="datetime" |
|
|
|
|
format="YYYY-MM-DD" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
:disabled="$route.query.index == '0' || $route.query.index == '2'" |
|
|
|
|
placeholder="请选择运理赔支付时间" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 处理结果说明 --> |
|
|
|
|
<el-form-item label="处理结果说明" v-if="routerState != 'end'" class="el_resj"> |
|
|
|
|
<el-form-item label="处理结果说明" class="el_resj"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="endFrom.resultDescription" |
|
|
|
|
placeholder="请输入处理结果说明" |
|
|
|
|
clearable |
|
|
|
|
:autosize="{ minRows: 3, maxRows: 4 }" |
|
|
|
|
type="textarea" |
|
|
|
|
:disabled="$route.query.index=='0' || $route.query.index=='2'" |
|
|
|
|
:disabled="$route.query.index == '0' || $route.query.index == '2'" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<!-- 备注信息 --> |
|
|
|
|
<div class="notes" v-if="routerState != 'end'"> |
|
|
|
|
<div class="notes"> |
|
|
|
|
<el-form-item label="异常问题描述"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="endFrom.problemDescription" |
|
|
|
|
type="textarea" |
|
|
|
|
:autosize="{ minRows: 3, maxRows: 4 }" |
|
|
|
|
placeholder="请输入异常问题描述" |
|
|
|
|
:disabled="$route.query.index =='0' " |
|
|
|
|
:disabled="$route.query.index == '0'" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
@ -485,7 +494,7 @@
|
|
|
|
|
<div class="Transport_damage_photos"> |
|
|
|
|
<span class="title">图片</span> |
|
|
|
|
<el-upload |
|
|
|
|
:disabled="$route.query.index =='0' " |
|
|
|
|
disabled |
|
|
|
|
v-model:file-list="endFrom.packageImage" |
|
|
|
|
list-type="picture-card" |
|
|
|
|
:on-preview="pictureList" |
|
|
|
@ -506,7 +515,7 @@
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 视频 --> |
|
|
|
|
<div class="Transport_damage_photos void"> |
|
|
|
|
<!-- <div class="Transport_damage_photos void"> |
|
|
|
|
<span class="title">视频</span> |
|
|
|
|
<el-upload |
|
|
|
|
class="upload-demo" |
|
|
|
@ -514,7 +523,7 @@
|
|
|
|
|
:action="doubledCount" |
|
|
|
|
:headers="headers" |
|
|
|
|
:on-success="ViodSuccess" |
|
|
|
|
:disabled="$route.query.index =='0' " |
|
|
|
|
:disabled="$route.query.index == '0'" |
|
|
|
|
> |
|
|
|
|
<el-icon class="el-icon--upload"><upload-filled /></el-icon> |
|
|
|
|
<div class="el-upload__text"> |
|
|
|
@ -522,10 +531,8 @@
|
|
|
|
|
<span v-if="videoUrl" class="PreviewVoid" @click.stop="Clickviod">点击预览</span> |
|
|
|
|
</div> |
|
|
|
|
</el-upload> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_sub" v-if="$route.query.index !='0'"> |
|
|
|
|
<el-button type="primary" class="button" @click="submit">提交</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
|
|
|
|
|
<!-- 视频预览弹窗 --> |
|
|
|
|
<el-dialog v-model="VideoPreviewStatus" title="视频预览" width="40%"> |
|
|
|
|
<video height="360" controls class="video-player"> |
|
|
|
@ -582,9 +589,13 @@
|
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_sub" v-if="$route.query.index != '0'"> |
|
|
|
|
<el-button type="primary" class="button" @click="submit">提交</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-form> |
|
|
|
|
</div> |
|
|
|
|
<el-affix :offset="msgTop" > |
|
|
|
|
|
|
|
|
|
<el-affix :offset="msgTop"> |
|
|
|
|
<div class="right"> |
|
|
|
|
<el-tabs type="border-card"> |
|
|
|
|
<div class="content"> |
|
|
|
@ -635,9 +646,17 @@
|
|
|
|
|
<p>{{ item.time }}</p> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="tag"> |
|
|
|
|
<div class="tag" v-if="msgState == 1 || msgState == 2 || msgState == 3"> |
|
|
|
|
<el-tag class="mx-1" effect="dark" |
|
|
|
|
>{{ msgState == 1 ? ' 待回复' : msgState == 2 ? '已回复' : '已超时' }} |
|
|
|
|
>{{ |
|
|
|
|
msgState == 1 |
|
|
|
|
? ' 待回复' |
|
|
|
|
: msgState == 2 |
|
|
|
|
? '已回复' |
|
|
|
|
: msgState == 3 |
|
|
|
|
? '已超时' |
|
|
|
|
: '' |
|
|
|
|
}} |
|
|
|
|
</el-tag> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
@ -758,6 +777,7 @@ import {
|
|
|
|
|
$_addProcessingResults, |
|
|
|
|
$_getSurveyRecord, |
|
|
|
|
$_getAbnormalPackage, |
|
|
|
|
$_getTrackRecord, |
|
|
|
|
} from '@/api/aftersales/aftersalesWorkOrder'; |
|
|
|
|
import { columnList, recordList } from '@/option/aftersales/vueTvemp.js'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
@ -788,6 +808,7 @@ const companyProportion = ref(0); //公司占比
|
|
|
|
|
const HistoricalPackageList = ref([]); //历史包件数组 |
|
|
|
|
const dialogHistoricalPackage = ref(false); //包件弹窗 |
|
|
|
|
const HistoricalPackageinput = ref(''); //历史包件选择 |
|
|
|
|
const UserPermissions = ref(''); //操作权限 |
|
|
|
|
const PackageInfo = ref([ |
|
|
|
|
//包件信息 |
|
|
|
|
{ packageCode: '', orderCode: '', waybillNumber: '' }, |
|
|
|
@ -818,24 +839,10 @@ const viodUrl = ref({});
|
|
|
|
|
const videoUrl = ref(null); //视频预览 |
|
|
|
|
const VideoPreviewStatus = ref(false); //视频预览状态 |
|
|
|
|
const warehouseData = ref([]); //处理方 |
|
|
|
|
const MessageContent = ref([ |
|
|
|
|
// { |
|
|
|
|
// time: '2021-08-03 16:00:00', |
|
|
|
|
// content: '内容1', |
|
|
|
|
// name: '营业部名称', |
|
|
|
|
// username: '张三', |
|
|
|
|
// img: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100', |
|
|
|
|
// file: 'http://192.168.10.100:9000/627683-logpm/upload/20231211/19d4e462c3ebe3026cb9b27868659554.docx', |
|
|
|
|
// mp4: 'http://192.168.10.100:9000/627683-logpm/upload/20231211/d4619612ebca02ca1318935b31bc6940.mp4', |
|
|
|
|
// imgList: [ |
|
|
|
|
// 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100', |
|
|
|
|
// 'https://fuss10.elemecdn.com/2/11/6535bcfb26e4c79b48ddde44f4b6fjpeg.jpeg', |
|
|
|
|
// ], |
|
|
|
|
// }, |
|
|
|
|
]); |
|
|
|
|
const MessageContent = ref([]); |
|
|
|
|
const CompensationParty = ref([ |
|
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, explain: '' }, //赔款方 |
|
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, explain: '' }, //收款方 |
|
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, explains: '' }, //赔款方 |
|
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, explains: '' }, //收款方 |
|
|
|
|
]); //收/赔 |
|
|
|
|
const ProcessingList = ref([]); //处理结果已经选择的列表 |
|
|
|
|
// 责任方列表 |
|
|
|
@ -888,25 +895,12 @@ const details = reactive({
|
|
|
|
|
columnList, |
|
|
|
|
|
|
|
|
|
/** 列表数据 */ |
|
|
|
|
data: [{}], |
|
|
|
|
data: [], |
|
|
|
|
// 处理记录 |
|
|
|
|
recordList, |
|
|
|
|
// 处理记录数据 |
|
|
|
|
recorddata: [ |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
{ entryTime: '测试' }, |
|
|
|
|
|
|
|
|
|
], |
|
|
|
|
/** 页面loading */ |
|
|
|
|
loadingObj: { |
|
|
|
@ -965,6 +959,21 @@ const TransportChange = val => {
|
|
|
|
|
|
|
|
|
|
// 页面初始化数据 |
|
|
|
|
const onLoad = () => { |
|
|
|
|
|
|
|
|
|
// 获取角色权限 |
|
|
|
|
getDictionaryBiz('after_sales_visits').then(res => { |
|
|
|
|
console.log(res, '角色字典'); |
|
|
|
|
const matchingItem = res.data.data.find( |
|
|
|
|
item => item.dictValue == JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name |
|
|
|
|
); |
|
|
|
|
if (matchingItem) { |
|
|
|
|
UserPermissions.value = matchingItem.dictValue; |
|
|
|
|
} else { |
|
|
|
|
UserPermissions.value = '仓库客服'; |
|
|
|
|
} |
|
|
|
|
console.log(UserPermissions.value, '当前角色权限'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 获取页面参数 |
|
|
|
|
if ($route.query.id) { |
|
|
|
|
console.log($route.query); |
|
|
|
@ -1014,6 +1023,7 @@ const onLoad = () => {
|
|
|
|
|
description: res.description, //说明 |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
res.data.data.processorVOList.forEach(item => { |
|
|
|
|
if (item.typesOf == 2) { |
|
|
|
|
// 处理方 |
|
|
|
@ -1048,24 +1058,69 @@ const onLoad = () => {
|
|
|
|
|
sum = Number(item.responsibilityRatio) + sum; |
|
|
|
|
}); |
|
|
|
|
companyProportion.value = 100 - sum; |
|
|
|
|
|
|
|
|
|
// updateDictionary(columnList[2].checkarr, 'pc_work_order'); //异常类型 |
|
|
|
|
// updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //发现环节 |
|
|
|
|
|
|
|
|
|
// 处理结果回显 |
|
|
|
|
// res.data.data.processingResultsVO.processingMoneyEntityList.forEach(item => { |
|
|
|
|
// ProcessingList.value.push({ |
|
|
|
|
// input: item.money, |
|
|
|
|
// min: 0, |
|
|
|
|
// max: 9999999999999, |
|
|
|
|
// state: item.resultType, |
|
|
|
|
// payment: item.compensationMethod, |
|
|
|
|
// name: item.resultTypeName, |
|
|
|
|
// text: '', |
|
|
|
|
// }); |
|
|
|
|
// endFrom.value.result.push(item.resultType); |
|
|
|
|
// }); |
|
|
|
|
ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map( |
|
|
|
|
item => { |
|
|
|
|
endFrom.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; |
|
|
|
|
// 理赔支付时间 |
|
|
|
|
endFrom.value.compensationTime = res.data.data.processingResultsVO.compensationTime; |
|
|
|
|
// 处理结果说明回显 |
|
|
|
|
endFrom.value.resultDescription = res.data.data.processingResultsVO.resultDescription; |
|
|
|
|
|
|
|
|
|
// 完结信息回显 |
|
|
|
|
// 收款方 |
|
|
|
|
CompensationParty.value = []; |
|
|
|
|
if (res.data.data.completionRecipientEntityList.length > 0) { |
|
|
|
|
res.data.data.completionRecipientEntityList.forEach((item, index) => { |
|
|
|
|
TotalamountReceived.value += Number(item.money); |
|
|
|
|
CompensationParty.value.push({ |
|
|
|
|
state: 1, //状态 |
|
|
|
|
num: item.money, //金额 |
|
|
|
|
name: item.recipient, //收款方名字 |
|
|
|
|
reason: item.reasonReceivingPayment, //收款方原因 |
|
|
|
|
explains: item.explains, //收款方说明 |
|
|
|
|
cld: index + 1, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 赔款方 |
|
|
|
|
if (res.data.data.completionRecordEntities.length > 0) { |
|
|
|
|
res.data.data.completionRecordEntities.forEach((item, index) => { |
|
|
|
|
TotalamountCompensation.value += Number(item.money); |
|
|
|
|
CompensationParty.value.push({ |
|
|
|
|
state: 0, //状态 |
|
|
|
|
num: item.money, //金额 |
|
|
|
|
name: item.indemnitor, //收款方名字 |
|
|
|
|
reason: item.reason, //收款方原因 |
|
|
|
|
explains: item.explains, //收款方说明 |
|
|
|
|
cld: index + 1, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
endFrom.value.arbitrate= res.data.data.reasonArbitration; //仲裁原因 |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 查询处理记录 |
|
|
|
|
$_getTrackRecord({ |
|
|
|
|
id:$route.query.id |
|
|
|
|
}).then(res=>{ |
|
|
|
|
console.log(res,'处理记录返回值'); |
|
|
|
|
details.recorddata=res.data.data.surveyRecordEntities |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 异常类型业务字典 |
|
|
|
@ -1293,7 +1348,7 @@ const AddCompensation = () => {
|
|
|
|
|
som++; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
CompensationParty.value.push({ name: '', state: 0, num: 0, reason: '', cld: som, explain: '' }); |
|
|
|
|
CompensationParty.value.push({ name: '', state: 0, num: 0, reason: '', cld: som, explains: '' }); |
|
|
|
|
}; |
|
|
|
|
// 添加收款方 |
|
|
|
|
const AddPayee = () => { |
|
|
|
@ -1303,7 +1358,7 @@ const AddPayee = () => {
|
|
|
|
|
som++; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
CompensationParty.value.push({ name: '', state: 1, num: 0, reason: '', cld: som, explain: '' }); |
|
|
|
|
CompensationParty.value.push({ name: '', state: 1, num: 0, reason: '', cld: som, explains: '' }); |
|
|
|
|
}; |
|
|
|
|
// 理赔总金额计算 |
|
|
|
|
const TotalChange = () => { |
|
|
|
@ -1455,6 +1510,9 @@ const personResponsiblechange = (val, index) => {
|
|
|
|
|
}; |
|
|
|
|
// 支付方式选择 |
|
|
|
|
const PaymentSelection = val => { |
|
|
|
|
if ($route.query.index == '0' || $route.query.index == '2') { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
console.log(val, '支付'); |
|
|
|
|
console.log(Paymentmethod.value); |
|
|
|
|
if (val.payment) { |
|
|
|
@ -1484,30 +1542,9 @@ const PaymentConfirmation = val => {
|
|
|
|
|
|
|
|
|
|
// 提交信息 |
|
|
|
|
const submit = () => { |
|
|
|
|
// console.log(FangAddList.value,'赔款方businessName'); |
|
|
|
|
// console.log(warehouseData.value,'选择'); |
|
|
|
|
// let a= [ |
|
|
|
|
// { |
|
|
|
|
// "businessName": "1711993021509234689", |
|
|
|
|
// "personResponsibleName": "1712365249019097089", |
|
|
|
|
// "responsibilityRatio": "" |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// "businessName": "1713372843170975745", |
|
|
|
|
// "personResponsibleName": "1712376790741266433", |
|
|
|
|
// "responsibilityRatio": "" |
|
|
|
|
// } |
|
|
|
|
// ] |
|
|
|
|
// let b=[ |
|
|
|
|
// {value: '1711993021509234689', label: '荆门仓'}, |
|
|
|
|
|
|
|
|
|
// {value: '1713372842906734594', label: '龙泉仓'}, |
|
|
|
|
|
|
|
|
|
// {value: '1713372842990620674', label: '双流欧派仓'}, |
|
|
|
|
// ] |
|
|
|
|
|
|
|
|
|
// const result = FangAddList.value.map(aItem => warehouseData.value.filter(bItem => bItem.value === aItem.businessName).map(match => match.label).join(',')).join(','); |
|
|
|
|
// console.log(result,'处理好的'); |
|
|
|
|
console.log(UserPermissions.value, '当前角色'); |
|
|
|
|
// if (UserPermissions.value == '职能客服' || UserPermissions.value == '客服经理' ) { |
|
|
|
|
|
|
|
|
|
// 完结的逻辑 |
|
|
|
|
// 异常问题描述非必填 |
|
|
|
|
if (routerState.value == 'end') { |
|
|
|
@ -1535,7 +1572,8 @@ const submit = () => {
|
|
|
|
|
let data = [ |
|
|
|
|
{ |
|
|
|
|
completionRecipientEntities: [], //收款方 |
|
|
|
|
completionRecordEntities: [], |
|
|
|
|
completionRecordEntities: [], //赔款方 |
|
|
|
|
reasonArbitration: endFrom.value.arbitrate, //仲裁原因 |
|
|
|
|
...info, |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
@ -1550,7 +1588,7 @@ const submit = () => {
|
|
|
|
|
indemnitor: item.name, //赔款方 |
|
|
|
|
reason: item.reason, //原因 |
|
|
|
|
money: Number(item.num), //金额 |
|
|
|
|
reasonArbitration: endFrom.value.arbitrate, //仲裁原因 |
|
|
|
|
reasonArbitration: item.reason, //说明 |
|
|
|
|
workOrderId: info.id, //异常工单 |
|
|
|
|
warehouseId: info.warehouseId, //仓库ID |
|
|
|
|
}); |
|
|
|
@ -1578,19 +1616,35 @@ const submit = () => {
|
|
|
|
|
// 赔款方 |
|
|
|
|
|
|
|
|
|
console.log(data, '处理好的值'); |
|
|
|
|
$_addCompletionEnd(data).then(res => { |
|
|
|
|
$router.push('/aftersales/aftersalesWorkOrder'); |
|
|
|
|
console.log(res, '完结成功返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
showClose: true, |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// $_addCompletionEnd(data).then(res => { |
|
|
|
|
// $router.push('/aftersales/aftersalesWorkOrder'); |
|
|
|
|
// console.log(res, '完结成功返回值'); |
|
|
|
|
// if (res.data.code == 200) { |
|
|
|
|
// ElMessage({ |
|
|
|
|
// showClose: true, |
|
|
|
|
// message: res.data.msg, |
|
|
|
|
// type: 'success', |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }else{ |
|
|
|
|
// ElMessage({ |
|
|
|
|
// message: '权限不足', |
|
|
|
|
// type: 'warning', |
|
|
|
|
// }); |
|
|
|
|
// console.log(UserPermissions.value); |
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
} else { |
|
|
|
|
// 新增记录 |
|
|
|
|
if (UserPermissions.value != '仓库客服') { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '权限不足', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
console.log(UserPermissions.value); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// 新增记录处理结果 |
|
|
|
|
console.log($route.query.id, '异常ID'); |
|
|
|
|
console.log(ProcessingList.value, 'ProcessingList12312'); |
|
|
|
|
let info = JSON.parse(JSON.stringify(endFrom.value)); //拷贝要提交的数据 |
|
|
|
@ -1858,7 +1912,7 @@ const ViewPackageDetails = val => {
|
|
|
|
|
} |
|
|
|
|
.notes { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-top:40px; |
|
|
|
|
margin-top: 40px; |
|
|
|
|
} |
|
|
|
|
.Transport_damage_photos { |
|
|
|
|
width: 100%; |
|
|
|
@ -1926,11 +1980,11 @@ const ViewPackageDetails = val => {
|
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
.el_pklab{ |
|
|
|
|
.el_pklab { |
|
|
|
|
width: 50px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el_pkLi{ |
|
|
|
|
|
|
|
|
|
.el_pkLi { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
@ -2182,7 +2236,7 @@ const ViewPackageDetails = val => {
|
|
|
|
|
flex-direction: column; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
.leftbox { |
|
|
|
|
width: 80%; |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
} |
|
|
|
@ -2225,10 +2279,10 @@ const ViewPackageDetails = val => {
|
|
|
|
|
justify-content: flex-end; |
|
|
|
|
margin: 4px 0; |
|
|
|
|
} |
|
|
|
|
.el_resj{ |
|
|
|
|
margin-top:20px !important; |
|
|
|
|
.el_resj { |
|
|
|
|
margin-top: 20px !important; |
|
|
|
|
} |
|
|
|
|
.el_lab{ |
|
|
|
|
.el_lab { |
|
|
|
|
margin-right: 10px !important; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|