Browse Source

客服

master
马远东 1 year ago
parent
commit
28e4407fbf
  1. 13
      src/router/views/index.js
  2. 131
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  3. 1307
      src/views/aftersales/aftersalesWorkOrdermodify.vue

13
src/router/views/index.js

@ -1277,7 +1277,18 @@ export default [
},
],
},
{
path: '/aftersales/aftersalesWorkOrdermodify',
component: Layout,
redirect: '/aftersales/aftersalesWorkOrdermodify',
children: [
{
path: '/aftersales/aftersalesWorkOrdermodify',
name: '信息修改',
component: () => import('@/views/aftersales/aftersalesWorkOrdermodify.vue'),
},
],
},
{
path: '/aftersales/aftersalesWorkOrderSS',
component: Layout,

131
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -417,6 +417,15 @@
<el-button @click="Indexdialog = false">取消</el-button>
<el-button type="primary" @click="ConfirmForm"> 提交 </el-button>
</div>
<div class="foot_btn">
<el-button type="primary" @click="addingRecord">新增记录</el-button>
<el-button type="primary" @click="EndJump">完结 </el-button>
<el-button type="primary" @click="ConfirmForm">打回 </el-button>
<el-button type="primary" @click="CustomerServiceCompleted">客服仲裁完结 </el-button>
</div>
</el-card>
<!-- <div v-if="routerState" class="foot_btn">
@ -507,6 +516,7 @@ import {
$_remove,
$_getBusinessDepartmentUser,
$_getAbnormalPackage,
$_getInfo,
} from '@/api/aftersales/aftersalesWorkOrder';
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import { getToken } from '@/utils/auth';
@ -669,6 +679,103 @@ const onLoad = () => {
updateDictionary(IndexException.value, 'pc_work_order'); //
updateDictionary(DiscoveringNodes.value, 'pc_discovery_node'); //
handle(); //
$_getInfo({ id: $route.query.id }).then(res => {
console.log(res, '回显返回值参数');
endFrom.value = res.data.data;
endFrom.value.result = [];
endFrom.value.processor = [];
endFrom.value.packageImage = [];
//
res.data.data.decreaseImageVOList.forEach(res => {
endFrom.value['packageImage'].push({
name: res.imageName,
url: res.imagePath,
});
});
//
PackageInfo.value = res.data.data.abnormalPackageVOList
.map(item => {
let orderCodes = item.orderCode.split(',');
let packageCodes = item.packageCode.split(',');
let waybillNumbers = item.waybillNumber.split(',');
return orderCodes.map((code, index) => ({
packageCode: packageCodes[index],
orderCode: code,
waybillNumber: waybillNumbers[index],
}));
})
.flat();
//
FangAddList.value = res.data.data.processorVOList
.filter(item => item.typesOf == '1')
.map(res => {
return {
businessName: res.businessId,
};
});
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
return {
businessName: res.businessId, //ID
personResponsibleName: res.personResponsibleName, //
responsibilityRatio: res.responsibilityRatio, //
description: res.description, //
};
});
res.data.data.processorVOList.forEach(item => {
if (item.typesOf == 2) {
//
endFrom.value.processor.push(item.businessId);
}
});
console.log(endFrom.value.processor, ' endFrom.value.processor');
getDictionaryBiz('pc_work_order').then(res => {
//
console.log(res, '环节字典');
endFrom.value.workOrderType = res.data.data.find(
res => res.dictKey == endFrom.value.workOrderType
).dictValue; //
});
//
getDictionaryBiz('pc_discovery_node').then(res => {
console.log(res, '发现环节');
// ProcessingResults.value = res.data.data;
TransportlossList.value = res.data.data;
console.log(TransportlossList.value, '处理好的发现环节');
// endFrom.discoveryNode
});
getDictionaryBiz('result_handling').then(res => {
console.log(res, '发现环节');
ProcessingResults.value = res.data.data;
});
//
let sum = 0;
FangAddList.value.forEach(item => {
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);
// });
});
};
onLoad(); //
//
@ -1060,6 +1167,30 @@ const ViewPackageDetails = val => {
});
dialogHistoricalPackage.value = false; //
};
//
const addingRecord = () => {
$router.push({
path: '/aftersales/aftersalesWorkOrderend',
query: {
id: $route.query.id,
name: $route.query.workOrderNumber + '-添加异常记录',
businessId: $route.query.workOrderNumber,
RouterState: 'record',
},
});
};
const EndJump = () => {
$router.push({
path: '/aftersales/aftersalesWorkOrderend',
query: {
id: $route.query.id,
name: $route.query.id + '-完结填写',
RouterState: 'end',
},
});
};
</script>
<style scoped lang="scss">

1307
src/views/aftersales/aftersalesWorkOrdermodify.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save