Browse Source

客服修复已知问题

pre-production
马远东 1 year ago
parent
commit
1259b09855
  1. 25
      src/views/aftersales/aftersalesWorkOrder.vue
  2. 297
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  3. 10
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  4. 89
      src/views/aftersales/aftersalesWorkOrderend.vue
  5. 109
      src/views/aftersales/aftersalesWorkOrdermodify.vue
  6. 80
      src/views/basicdata/driverArtery/basicdataDriverArtery.vue

25
src/views/aftersales/aftersalesWorkOrder.vue

@ -188,7 +188,7 @@
<!-- 处理结果确定和处理完毕 -->
<el-button
v-if="
TabPermissions == '2'
TabPermissions == '2' && slotProps.scope.row.workOrderStatus!='30'
"
@click="DetermineStorage(slotProps.scope)"
>确定</el-button
@ -1415,7 +1415,28 @@ const InformationViewing = val => {
};
//
const view = val => {
console.log(val.row.id);
console.log(val.row);
//
if(TabPermissions.value==4){
$router.push({
// AppealStatusT
path: '/aftersales/aftersalesWorkOrderInfo',
query: {
id: val.row.lawoId,
appealID: val.row.id, //
name: val.row.workOrderNumber + '-信息查看',
warehouseId: val.row.warehouseId,
workOrderNumber: val.row.workOrderNumber, //
businessId: val.row.businessId,
ProcessType: TabPermissions.value == 2 ? '2' : TabPermissions.value == 3 ? '1' : '', // 1 2
RouteIndexs: TabPermissions.value, //
Routstate: '', //
AppealReview: val.row.typesOf ? (val.row.typesOf == '0' ? 'true' : 'false') : 'true', //
},
});
return
}
$router.push({
// AppealStatusT
path: '/aftersales/aftersalesWorkOrderInfo',

297
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -97,7 +97,13 @@
:content="item.orderCode ? item.orderCode : '订单自编号'"
placement="top"
>
<el-input v-model="item.orderCode" :disabled="identifying != '2'" :placeholder="identifying != '2'?'订单自编号(自动带出)':'请输入订单自编号'" />
<el-input
v-model="item.orderCode"
:disabled="identifying != '2'"
:placeholder="
identifying != '2' ? '订单自编号(自动带出)' : '请输入订单自编号'
"
/>
</el-tooltip>
</el-form-item>
</div>
@ -105,7 +111,11 @@
<div class="maxBox">
<el-form-item label="品牌">
<el-tooltip :content="item.brandName ? item.brandName : '品牌'" placement="top">
<el-input v-model="item.brandName" :disabled="identifying != '2'" :placeholder="identifying != '2'?'品牌(自动带出)':'请输入品牌'" />
<el-input
v-model="item.brandName"
:disabled="identifying != '2'"
:placeholder="identifying != '2' ? '品牌(自动带出)' : '请输入品牌'"
/>
</el-tooltip>
</el-form-item>
</div>
@ -632,7 +642,7 @@ const fleeingState = ref(false); //窜货件数弹窗
const ShortageList = ref([]); //
const fleeingList = ref([]); //
const valueStrictly = ref();
const ProcessingreleaseState=ref(false)//
const ProcessingreleaseState = ref(false); //
const routerID = ref(null); //ID
const routerState = ref(''); //
const personResponsibleList = ref([]); //
@ -648,7 +658,7 @@ const amplifyurl = ref(''); //当前点击的图片
const amplifysrcList = ref([]); //
const ProcessingList = ref([]); //
const Paymentmethod = ref([]); //
const Mydata=ref();//
const Mydata = ref(); //
const PackageInfo = ref([
//
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },
@ -764,8 +774,8 @@ const onLoad = () => {
// DeliveryTrainnumber(); //
console.log($route.query.id, '页面初始化');
routerState.value = $route.query.routerState;
Mydata.value=JSON.parse(localStorage.getItem('my_data'));//
console.log(Mydata.value,'记录本地登录');
Mydata.value = JSON.parse(localStorage.getItem('my_data')); //
console.log(Mydata.value, '记录本地登录');
updateDictionary(IndexException.value, 'pc_work_order'); //
updateDictionary(DiscoveringNodes.value, 'pc_discovery_node'); //
handle(); //
@ -959,7 +969,7 @@ const AddPackage = () => {
waybillNumber: '',
brandName: '',
state: false,
mallName:''
mallName: '',
});
};
//
@ -996,7 +1006,14 @@ const ResponsibilityRemoval = val => {
//
const TopChange = val => {
PackageInfo.value = [
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false,mallName:'' },
{
packageCode: '',
orderCode: '',
waybillNumber: '',
brandName: '',
state: false,
mallName: '',
},
]; //
Indexform.value = {}; //
@ -1131,19 +1148,6 @@ const ConfirmForm = () => {
let processorEntityList = [];
//
if (Indexform.value.processor.length) {
Indexform.value.processor.forEach(item => {
let found = warehouseData.value.find(element => element.value == item.toString());
processorEntityList.push({
businessName: found ? found.label : '',
businessId: item,
conditions: 1,
typesOf: 2,
});
});
}
DataSubmit.processorEntityList = processorEntityList;
DataSubmit.decreaseImageEntityList = JSON.parse(
JSON.stringify(Indexform.value['decreaseImageEntityList'])
@ -1154,19 +1158,28 @@ const ConfirmForm = () => {
//
if (PackageInfo.value.length) {
PackageInfo.value.forEach(item => {
DataSubmit['packageEntityList'].push({
number: PackageInfo.value.length, //
packageCode: item.packageCode ? item.packageCode : null, //
waybillNumber: item.waybillNumber ? item.waybillNumber : null, //
orderCode: item.orderCode ? item.orderCode : null, //
brandName: item.brandName ? item.brandName : null, //
});
if (item.packageCode) {
DataSubmit['packageEntityList'].push({
number: PackageInfo.value.length, //
packageCode: item.packageCode ? item.packageCode : null, //
waybillNumber: item.waybillNumber ? item.waybillNumber : null, //
orderCode: item.orderCode ? item.orderCode : null, //
brandName: item.brandName ? item.brandName : null, //
});
}
});
DataSubmit.packageCode = [...new Set(PackageInfo.value.map(item => item.packageCode))].join(','); //
DataSubmit.waybillNumber = [...new Set(PackageInfo.value.map(item => item.waybillNumber))].join(','); //
DataSubmit.brandName = [...new Set(PackageInfo.value.map(item => item.brandName))].join(','); //
DataSubmit.orderCode = [...new Set(PackageInfo.value.map(item => item.orderCode))].join(','); //
DataSubmit.packageCode = [...new Set(PackageInfo.value.map(item => item.packageCode))].join(
','
); //
DataSubmit.waybillNumber = [
...new Set(PackageInfo.value.map(item => item.waybillNumber)),
].join(','); //
DataSubmit.brandName = [...new Set(PackageInfo.value.map(item => item.brandName))].join(
','
); //
DataSubmit.orderCode = [...new Set(PackageInfo.value.map(item => item.orderCode))].join(
','
); //
}
// DataSubmit['packageEntityList'].push({
@ -1178,7 +1191,7 @@ const ConfirmForm = () => {
// waybillNumber: PackageInfo.value.map(item => item.waybillNumber).join(','), //
// orderCode: PackageInfo.value.map(item => item.orderCode).join(','), //
// });
//
Indexform.value.number = PackageInfo.value.length;
console.log(DataSubmit['packageEntityList'], '包件信息');
@ -1216,10 +1229,10 @@ const ConfirmForm = () => {
wordOrderId: Indexform.value.workOrderNumber, //ID
description: item.description ? item.description : null, //
personResponsibleId:
personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.id ||
item.personResponsibleList.find(obj => obj.id == item.personResponsibleName)?.id ||
null, //ID
personResponsibleName:
personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)
item.personResponsibleList.find(obj => obj.id == item.personResponsibleName)
?.name || null, //
responsibilityRatio: item.responsibilityRatio ? item.responsibilityRatio : null, //
tripartite: item.tripartite ? item.tripartite : null, //
@ -1250,6 +1263,19 @@ const ConfirmForm = () => {
console.log(DataSubmit['personResponsibleDTO'], '新责任方处理的数据');
//console.log(Indexform.value.duty.length);
//
//
if (Indexform.value.processor.length) {
Indexform.value.processor.forEach(item => {
let found = warehouseData.value.find(element => element.value == item.toString());
processorEntityList.push({
businessName: found ? found.label : '',
businessId: item,
conditions: 1,
typesOf: 2,
});
});
}
if (FangAddList.value.length) {
FangAddList.value.forEach(item => {
console.log(item, 'item');
@ -1314,9 +1340,6 @@ const ConfirmForm = () => {
delete DataSubmit.processor; //
console.log(DataSubmit, '处理好的数据');
// stringify
$_submit(DataSubmit)
.then(res => {
if (res.data.code == 200) {
@ -1435,15 +1458,13 @@ const moneyBtnB = () => {
};
//
const Processingrelease = ()=>{
if(Indexform.value.processor.length ==1 && Mydata.value.id==Indexform.value.processor[0] ){
ProcessingreleaseState.value = true;//
}else{
ProcessingreleaseState.value = false;//
const Processingrelease = () => {
if (Indexform.value.processor.length == 1 && Mydata.value.id == Indexform.value.processor[0]) {
ProcessingreleaseState.value = true; //
} else {
ProcessingreleaseState.value = false; //
}
}
};
//
const Statistics = () => {
@ -1469,104 +1490,116 @@ const Statistics = () => {
//
const ChangePackageInfo = (val, index) => {
//
if (identifying.value == '2') {
Statistics(); //
return;
}else{
Statistics(); //
if(!NumberPackages.value){
} else {
if (!val) {
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //
PackageInfo.value[index].brandName = ''; //
Indexform.value.first = ''; //
Indexform.value.secondary = ''; //
Indexform.value.waybillMall = ''; //
Indexform.value.typeServiceName = ''; //
return;
//
}
}
return;
}
Statistics(); //
if (!NumberPackages.value) {
if (!val) {
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //
PackageInfo.value[index].brandName = ''; //
Indexform.value.first = ''; //
Indexform.value.secondary = ''; //
Indexform.value.waybillMall = ''; //
Indexform.value.typeServiceName = ''; //
return;
//
}
}
// if (NumberPackages.value > 1) {
// const found = PackageInfo.value
// .filter(item => item.packageCode !== val)
// .some(item => item.packageCode === val);
// if (found) {
// console.log('false');
// ElMessage({
// message: '',
// type: 'warning',
// });
// return;
// }
// }
if(!val){
return
}
Statistics(); //
let data = {
packageCode: val,
};
$_getAbnormalPackage(data).then(res => {
console.log(res, '包件信息');
console.log(res.data.data, '包件信息');
if (res.data.data.length) {
console.log(NumberPackages.value ,'NumberPackages.value ');
console.log(PackageInfo.value ,'PackageInfo.value');
const packageData = res.data.data[0];
if (NumberPackages.value > 1) {
let mallName = PackageInfo.value.find(item => item.mallName).mallName;
console.log(mallName,'筛选出来的值');
if (mallName != packageData.mallName) {
ElMessageBox.confirm('请选择运单商场一致的包条码!', 'Warning', {
confirmButtonText: '确定',
type: 'warning',
})
.then(() => {
return;
Statistics(); //
let data = {
packageCode: val,
};
$_getAbnormalPackage(data).then(res => {
console.log(res, '包件信息');
console.log(res.data.data, '包件信息');
if (res.data.data.length) {
console.log(NumberPackages.value, 'NumberPackages.value ');
console.log(PackageInfo.value, 'PackageInfo.value');
const packageData = res.data.data[0];
if (NumberPackages.value > 1) {
let mallName = PackageInfo.value.find(item => item.mallName).mallName;
console.log(mallName, '筛选出来的值');
if (mallName != packageData.mallName) {
ElMessageBox.confirm('请选择运单商场一致的包条码!', 'Warning', {
confirmButtonText: '确定',
type: 'warning',
})
.catch(() => {
ElMessage({
type: 'info',
message: '请重新输入新包条码',
.then(() => {
return;
})
.catch(() => {
ElMessage({
type: 'info',
message: '请重新输入新包条码',
});
});
});
return;
return;
}
}
}
console.log('跑到这里来了');
//
console.log(packageData, '获取的第一个参数');
PackageInfo.value[index].orderCode = packageData.orderCode; //
PackageInfo.value[index].waybillNumber = packageData.waybillNumber; //
PackageInfo.value[index].orderId = packageData.orderId; //
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].mallName = packageData.mallName; //
PackageInfo.value[index].state = false; //
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
console.log(results, '筛选后的结果');
if (results.length > 0) {
HistoricalPackageList.value = results;
PackageInfo.value[index].state = true; //
} else {
PackageInfo.value[index].state = false; //
}
// HistoricalPackageList PackageInfo
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: null; //
}
// packageCode; //
// //
// orderCode: orderId; //
// workOrderId; //id
// workOrderNumber; //
console.log('跑到这里来了');
//
console.log(packageData, '获取的第一个参数');
PackageInfo.value[index].orderCode = packageData.orderCode; //
PackageInfo.value[index].waybillNumber = packageData.waybillNumber; //
PackageInfo.value[index].orderId = packageData.orderId; //
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].mallName = packageData.mallName; //
console.log(PackageInfo.value, '处理好的参数');
});
PackageInfo.value[index].state = false; //
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
console.log(results, '筛选后的结果');
if (results.length > 0) {
HistoricalPackageList.value = results;
PackageInfo.value[index].state = true; //
} else {
PackageInfo.value[index].state = false; //
}
// HistoricalPackageList PackageInfo
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: null; //
}
// packageCode; //
// //
// orderCode: orderId; //
// workOrderId; //id
// workOrderNumber; //
console.log(PackageInfo.value, '处理好的参数');
});
}
};
//

10
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -1008,7 +1008,7 @@ const onLoad = () => {
$_getInfo({ id: $route.query.id }).then(res => {
console.log(res, '回显返回值参数');
Indexform.value = res.data.data;
Indexform.value['result'] = [];
Indexform.value['processor'] = [];
//
@ -1037,10 +1037,12 @@ const onLoad = () => {
sum = Number(item.responsibilityRatio) + sum;
});
let factorydata = res.data.data.personResponsibleVOS.find(item => item.typesOf);
if (factorydata.typesOf) {
groundlineType.value = true; //
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
return {
businessName: res.businessId, //ID

89
src/views/aftersales/aftersalesWorkOrderend.vue

@ -1095,6 +1095,11 @@ const onLoad = () => {
endFrom.value.processor = [];
endFrom.value.packageImage = [];
//
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
res.data.data.decreaseImageVOList.forEach(res => {
amplifysrcList.value.push(res.imagePath);
endFrom.value['packageImage'].push({
@ -1304,8 +1309,6 @@ const Chathistory = res => {
$_getTrackRecord({
id: $route.query.id,
}).then(res => {
resData = res.data.data.surveyRecordEntities;
console.log(res, '处理记录返回值');
res.data.data.surveyRecordEntities.forEach(item => {
MessageContent.value.unshift({
time: item.createTime, //
@ -1320,6 +1323,12 @@ const Chathistory = res => {
identifying: false, //
});
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
Msgloading.value = false; //
console.log(res, '聊天记录');
});
@ -1327,41 +1336,41 @@ const Chathistory = res => {
$_getSurveyRecord({
id: $route.query.id,
}).then(res => {
resData = res.data.data.surveyRecordEntities;
console.log(res, '聊天返回值');
console.log(resData, '处理记录返回值');
//
MessageContent.value.push({
time: item.createTime, //
content: item.content, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: true, //
if (res.data.data.processorVOList) {
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
}
res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl);
}
MessageContent.value.push({
time: item.createTime, //
content: item.content, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: true, //
});
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
Msgloading.value = false; //
console.log(res, '聊天记录');
});
}
resData.forEach(item => {
if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl);
}
if (res.data.data.processorVOList) {
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
}
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
};
onLoad();
@ -1885,7 +1894,8 @@ const submit = () => {
let info = JSON.parse(JSON.stringify(endFrom.value)); //
let data = {
aftersalesProcessingResultsDTO: {
...info,
// ...info,
},
processingMoneyEntityList: [], //
};
@ -1897,6 +1907,7 @@ const submit = () => {
sum = computeNumber(sum, '+', ProcessingList.value[i].input).result;
}
data.aftersalesProcessingResultsDTO.money = sum; //
data.resultDescription=endFrom.value.resultDescription;//
// data['compensationMethod'] = Paymentmethod.value.filter(
// item => item.dictKey == endFrom.value.compensationMethod
// )[0].dictValue; //
@ -1907,7 +1918,7 @@ const submit = () => {
data.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value
.map(item => item.text)
.join(',');
data['processingMoneyEntityList'] = ProcessingList.value
data.aftersalesProcessingResultsDTO.processingMoneyEntityList = ProcessingList.value
.map(item => {
console.log(item);
let match = ProcessingResults.value.find(element => element.dictValue == item.name);
@ -1933,8 +1944,12 @@ const submit = () => {
})
.filter(item => item !== null);
// data.aftersalesProcessingResultsDTO.paymentUnit = paymentUnit.value; //
data.aftersalesProcessingResultsDTO.processingMoneyEntityList =
data['processingMoneyEntityList'];
data.aftersalesProcessingResultsDTO.paymentUnit = ProcessingList.value
.map(item => item.paymentUnit)
.join(','); //
// data.aftersalesProcessingResultsDTO.processingMoneyEntityList = data['processingMoneyEntityList'];
console.log('走到了这一步');
data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //ID
data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
@ -2593,12 +2608,12 @@ const CustomerServiceCompleted = () => {
.inputleft {
display: flex;
:deep(.el-fil) {
background-color: #afbdc3;
background-color: #409eff;
border: none;
}
}
:deep(.el_next) {
background-color: #afbdc3;
background-color: #409eff;
border: none;
}
:deep(.el_next:hover) {

109
src/views/aftersales/aftersalesWorkOrdermodify.vue

@ -121,6 +121,7 @@
v-model="Indexform.trainNumber"
placeholder="请输入车次号(干线卸车环节)"
clearable
@change="DeliveryTrainnumber"
/>
</el-form-item>
<!-- 必填 -->
@ -407,7 +408,6 @@
/>
</div>
<el-date-picker
disabled
v-model="item.compensationTime"
type="datetime"
format="YYYY-MM-DD"
@ -420,9 +420,20 @@
<div class="el_tool">
<span>总金额:{{ TotalClaimAmount }}</span>
</div>
</div>
<el-tabs type="border-card" class="demo-tabs">
</div>
<!-- 处理结果说明 -->
<el-form-item label="处理结果说明" class="el_resj">
<el-input
v-model="Indexform.resultDescription"
placeholder="请输入处理结果说明"
clearable
:autosize="{ minRows: 3, maxRows: 4 }"
type="textarea"
:disabled="Appealeditor == 'appeal'"
/>
</el-form-item>
<el-tabs type="border-card" class="demo-tabs" v-if="!Processingresults">
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
@ -497,6 +508,7 @@
placeholder="请填写责任人"
clearable
:rows="2"
:disabled="Processingresults"
/>
</el-form-item>
</div>
@ -531,7 +543,7 @@
</el-tabs>
<!-- 仲裁原因 -->
<div class="arbitrate">
<div class="arbitrate" v-if="!Processingresults">
<el-tabs type="border-card" class="demo-tabs">
<el-tab-pane>
<template #label>
@ -839,21 +851,8 @@ const responsible = ref([
label: '物流',
},
]);
const DeliveryDriver = ref([
{
value: '0',
label: '兰溪',
},
{
value: '1',
label: '李华',
},
{
value: '2',
label: '唐飞',
},
]);
//
const DeliveryDriver = ref([]);
//
const fileList = ref([]);
//
@ -868,7 +867,33 @@ function updateDictionary(targetArray, dictionaryType) {
});
});
}
//
function DeliveryTrainnumber() {
if (!Indexform.value.trainNumber && !Indexform.value.deliveryTime) {
Indexform.value.deliveryTime = null;
Indexform.value.deliveryDriver = '';
DeliveryDriver.value = [];
}
if (!Indexform.value.trainNumber && !Indexform.value.deliveryTime) {
return;
}
let data = {
trainNumber: Indexform.value.trainNumber,
taskTime: Indexform.value.deliveryTime,
};
data.current = 1; //
data.size = 200; //
$_shippingInformation(data).then(res => {
console.log(res, '查询返回值');
DeliveryDriver.value = res.data.data.records; //
//
if (res.data.data.records.length == 1 && groundlineType.value != 3) {
Indexform.value.deliveryTime = res.data.data.records[0].taskTime; //
Indexform.value.deliveryDriver = res.data.data.records[0].id; //
// Indexform.value.trainNumber = res.data.data.records[0].trainNumber; //
}
});
}
// TOKEN
const headers = computed(() => {
return { 'Blade-Auth': 'Bearer ' + getToken() };
@ -963,6 +988,11 @@ const onLoad = () => {
handle(); //
$_getInfo({ id: $route.query.id }).then(res => {
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
oldData.value = JSON.parse(JSON.stringify(res.data.data));
console.log(oldData.value, '旧数据');
console.log(res, '回显返回值参数');
@ -998,9 +1028,9 @@ const onLoad = () => {
let factorydata = res.data.data.personResponsibleVOS.find(item => item.typesOf);
if (factorydata.typesOf) {
groundlineType.value = true; //
}
// if (factorydata.typesOf) {
// groundlineType.value = true; //
// }
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
ResponsiblepartyData.value.push(res);
@ -1163,6 +1193,31 @@ const onLoad = () => {
});
};
onLoad(); //
//
const Statistics = () => {
//
if (identifying.value == 1) {
Indexform.value.number = 0;
PackageInfo.value.map(res => {
if (res.packageCode) {
Indexform.value.number++;
}
});
} else {
//
Indexform.value.number = 0;
PackageInfo.value.map(res => {
console.log(res);
if (res.waybillNumber) {
Indexform.value.number++;
}
});
}
};
//
const abnormalChange = val => {
console.log(val, '异常事件类型');
@ -1239,7 +1294,7 @@ const AddPackage = () => {
packageCode: '',
orderCode: '',
waybillNumber: '',
state: 1,
state: 0,
brandName: '',
});
};
@ -1822,7 +1877,9 @@ const Arbitrationcompleted = () => {
let data = {
id: $route.query.id,
// workOrderId: $route.query.id, //ID
resultDescription:Indexform.value.resultDescription,//
aftersalesProcessingResultsDTO: {
resultDescription:Indexform.value.resultDescription,//
id: $route.query.id,
},
};
@ -1843,6 +1900,7 @@ const Arbitrationcompleted = () => {
resultName: item.name, //
paymentUnit: item.paymentUnit, //
id:item.id, //id
compensationTime:item.compensationTime,//
};
} else {
return null;
@ -2132,6 +2190,9 @@ const moneyBtnB = () => {
};
//
const ChangePackageInfo = (val, index) => {
if(!val){
return
}
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //

80
src/views/basicdata/driverArtery/basicdataDriverArtery.vue

@ -30,11 +30,32 @@
@click="handleDelete"
>
</el-button>
<el-button type="danger" icon="el-icon-delete" plain @click="handleImport"
>
</el-button>
<!-- v-if="permission.basicMaterial_delete"-->
<el-button type="warning" plain icon="el-icon-download" @click="handleExport">
</el-button>
<!-- <el-button type="warning"-->
<!-- plain-->
<!-- icon="el-icon-download"-->
<!-- @click="handleExport"> -->
<!-- </el-button>-->
<el-dialog title="物料导入" append-to-body v-model="excelBox" width="555px">
<avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
<template #excelTemplate>
<el-button type="primary" @click="handleTemplate">
点击下载<i class="el-icon-download el-icon--right"></i>
</el-button>
</template>
</avue-form>
</el-dialog>
</template>
</avue-crud>
</basic-container>
@ -64,6 +85,33 @@ import { getDetail as getDetailDelineNode } from '@/api/basic/basicDelineNode';
export default {
data() {
return {
excelBox:false,
excelForm: {},
excelOption: {
submitBtn: false,
emptyBtn: false,
column: [
{
label: '文件上传',
prop: 'excelFile',
type: 'upload',
drag: true,
loadText: '文件上传,请稍等',
span: 24,
propsHttp: {
res: 'data',
},
tip: '请上传 .xls,.xlsx 标准格式文件',
action: '/api/logpm-basicdata/driverArtery/mport-stockArticle',
},
{
label: '模板下载',
prop: 'excelTemplate',
formslot: true,
span: 24,
},
],
},
form: {},
query: {},
search: {},
@ -640,6 +688,16 @@ export default {
},
},
methods: {
//
handleImport() {
this.excelBox = true;
},
uploadAfter(res, done, loading, column) {
window.console.log(column);
this.excelBox = false;
this.refreshChange();
done();
},
rowSave(row, done, loading) {
console.log(row, 'row信息');
if (Array.isArray(row.bindVehicles)) {
@ -732,16 +790,11 @@ export default {
});
},
handleExport() {
let downloadUrl = `/blade-basicdataDriverArtery/basicdataDriverArtery/export-basicdataDriverArtery?${
let downloadUrl = `/api/logpm-b1asicdata/driverArtery/export-basicdataDriverArteryMb?${
this.website.tokenHeader
}=${getToken()}`;
const { name, phone, type, jobType } = this.query;
let values = {
name_like: name,
phone_like: phone,
type_equal: type,
jobType_equal: jobType,
};
const {} = this.query;
let values = {};
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
@ -749,10 +802,19 @@ export default {
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `司机信息${dateNow()}.xlsx`);
downloadXls(res.data, `司机信息${dateNow()}.xlsx`);
NProgress.done();
});
});
},
//
handleTemplate() {
console.log('下载模板!!!');
exportBlob(
`/api/logpm/basicdata/driverArtery/export-basicdataDriverArteryMb?${this.website.tokenHeader}=${getToken()}`
).then(res => {
downloadXls(res.data, '物料数据模板.xlsx');
});
},
beforeOpen(done, type) {
if (['edit', 'view'].includes(type)) {

Loading…
Cancel
Save