Browse Source

合并代码

fix_bug_pro20231227
pref_mail@163.com 1 year ago
parent
commit
d66c73b819
  1. 24
      src/components/tablecmt/tablecmt.vue
  2. 245
      src/option/distribution/addVehicleStowage.js
  3. 260
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  4. 88
      src/views/aftersales/aftersalesWorkOrderend.vue
  5. 5
      src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue
  6. 115
      src/views/distribution/artery/VehicleStowageDetails.vue
  7. 57
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  8. 37
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  9. 8
      src/views/distribution/inventory/distrilbutionBillLading.vue
  10. 23
      src/views/distribution/reservation/atlas.vue
  11. 10
      src/views/distribution/reservation/reservationAddFrom.vue

24
src/components/tablecmt/tablecmt.vue

@ -5,6 +5,7 @@
style="width: 100%"
:show-summary="shownm"
:summary-method="getSummaries"
:span-method="arraySpanMethod"
v-loading="loading"
@selection-change="handleSelectionChange"
border
@ -297,13 +298,32 @@ let props = defineProps({
required: false,
default: null,
},
/** 设置列表行类名 */
tableRowClassName: {
type: Function as PropType<(row: TableDataType, rowIndex: number) => string>,
required: false,
default: null,
},
/**
* 设置行合并和列合并
* @return [行合并, 列合并]
* */
arraySpanMethod: {
type: Function as PropType<
(row: {
row: TableDataType;
column: TableColumnType;
rowIndex: number;
columnIndex: number;
}) => number[]
>,
required: false,
default: null,
},
});
// row, column, rowIndex, columnIndex
let selectarr = ref([]);
/** 设置每行颜色 */
const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: number }) => {
let sfcheck = false;
selectarr.value.map(item => {
@ -482,6 +502,10 @@ const getSummaries = (param: any) => {
// console.log(columns)
return newarr;
};
/** 设置合并行和列 */
const arraySpanMethod = row => {
if (props.arraySpanMethod) return props.arraySpanMethod(row);
};
watchEffect(() => {
props.columnList.map(item => {
if (item.isshowSummary) {

245
src/option/distribution/addVehicleStowage.js

@ -564,3 +564,248 @@ export const newColumnList = [
isshowSummary: false,
},
];
/** 配载详情表头 */
export const detailsColumnList = [
// {
// prop: '',
// label: '复选框',
// type: 0,
// width: 55,
// fixed: true,
// },
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
fixed: true,
isshowSummary: true,
},
{
prop: 'carsNo',
label: '配载车次号',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: true,
sortable: true,
isshowSummary: false,
},
{
prop: 'waybillNo',
label: '运单号',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: true,
sortable: true,
isshowSummary: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
},
{
prop: 'createTime',
label: '开单日期',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'destination',
label: '到站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'destinationWarehouseName',
label: '目的站',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'shipper',
label: '发货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
{
prop: 'consignee',
label: '收货单位',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'consigneeName',
label: '收货人',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'productName',
label: '品类名称',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalNum',
label: '运单总件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalNum',
label: '件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalNum',
label: '计划件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalNum',
label: '订单装车件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'stockNum',
label: '在库数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'price',
label: '单价',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalWeight',
label: '重量(KG)',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'totalVolume',
label: '体积',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'freight',
label: '运费',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
isshowSummary: true,
sortable: true,
},
{
prop: 'customerTrain',
label: '客户车次',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'remark',
label: '运单备注',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: false,
},
];

260
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -11,12 +11,13 @@
<el-tabs type="border-card" class="PackageInformation">
<el-tab-pane label="包件信息">
<div class="ResponsibilityBoxS">
<div><el-button type="primary" @click="AddPackage"> 添加信息 </el-button></div>
<!-- <div><el-button type="primary" @click="AddPackage"> 添加信息 </el-button></div> -->
<div class="el_btbox" v-for="(item, index) in PackageInfo" :key="index">
<div class="leftbox">
<div class="maxBox">
<span class="title">包条码:</span>
<el-input
disabled
v-model="item.packageCode"
placeholder="请输入包条码"
clearable
@ -27,29 +28,39 @@
<div class="maxBox">
<span class="title">订单自编码:</span>
<el-input v-model="item.orderCode" placeholder="请输入订单自编号" clearable />
<el-input
disabled
v-model="item.orderCode"
placeholder="请输入订单自编号"
clearable
/>
</div>
<div class="maxBox">
<span class="title">运单号:</span>
<el-input v-model="item.waybillNumber" placeholder="请输入运单号" clearable />
<el-input
disabled
v-model="item.waybillNumber"
placeholder="请输入运单号"
clearable
/>
</div>
</div>
<div class="el-btn">
<!-- <div class="el-btn">
<el-button v-if="item.state" type="primary" @click="historicalPackages(index)">
查看历史包件
</el-button>
<el-button type="primary" @click="PackagRemoval(index)"> 移除 </el-button>
</div>
<el-button type="primary" @click="PackagRemoval(index)"> 移除 </el-button>
</div> -->
</div>
<div class="NumTotal">
<span>总件数:{{ Indexform.number }}</span>
<span>总件数:{{ PackageInfo.length }}</span>
</div>
</div>
</el-tab-pane>
</el-tabs>
<el-form :model="Indexform" label-width="100px" class="IndexFrom" ref="IndexForm">
<el-form disabled :model="Indexform" label-width="100px" class="IndexFrom" ref="IndexForm">
<el-form-item label="异常类型">
<el-select
v-model="Indexform.workOrderType"
@ -275,6 +286,7 @@
<div class="el_clzr">
<el-form-item class="investigate" label="调查经过">
<el-input
disabled
v-model="Indexform.investigationPocess"
placeholder="请输入调查经过"
clearable
@ -290,6 +302,7 @@
filterable
multiple
placeholder="请选择处理方"
disabled
>
<el-option
v-for="item in warehouseData"
@ -304,7 +317,7 @@
<el-tabs type="border-card">
<el-tab-pane label="责任方选择">
<div class="ResponsibilityBox">
<div><el-button type="primary" @click="responsibleParty"> 添加信息 </el-button></div>
<!-- <div><el-button type="primary" @click="responsibleParty"> 添加信息 </el-button></div> -->
<div class="el_btbox" v-for="(item, index) in FangAddList" :key="index">
<div class="leftbox">
<div class="maxBox">
@ -317,6 +330,7 @@
clearable
placeholder="请选提货择责任方"
v-if="groundlineType == 1"
disabled
>
<el-option
v-for="item in responsible"
@ -329,9 +343,10 @@
<el-select
v-else
v-model="item.businessName"
filterable
filterable
placeholder="请选择责任方"
@change="ResponsiblePartychange(item.businessName, index)"
disabled
>
<el-option
v-for="item in warehouseData"
@ -349,6 +364,7 @@
clearable
filterable
placeholder="请选责任人"
disabled
>
<el-option
v-for="item in personResponsibleList"
@ -365,12 +381,14 @@
placeholder="请输入占比 "
clearable
:rows="2"
disabled
/>
</div>
<div class="maxBox">
<span class="title">说明:</span>
<el-input
disabled
v-model="item.description"
placeholder="请输入说明 "
clearable
@ -379,7 +397,7 @@
</div>
</div>
<div class="el-btn">
<el-button type="primary" @click="ResponsibilityRemoval(index)"> 移除 </el-button>
<!-- <el-button type="primary" @click="ResponsibilityRemoval(index)"> 移除 </el-button> -->
</div>
</div>
<div class="Proportion">
@ -394,6 +412,7 @@
SelectType == 1 ? '运损照片' : SelectType == 3 ? '窜货照片' : '照片'
}}</span>
<el-upload
disabled
v-model:file-list="Indexform.packList"
list-type="picture-card"
:on-preview="pictureList"
@ -408,25 +427,23 @@
<el-icon><Plus /></el-icon>
</el-upload>
<el-dialog v-model="dialogVisible">
<!-- <el-dialog v-model="dialogVisible">
<img w-full :src="dialogImageUrl" alt="图片" />
</el-dialog>
</el-dialog> -->
</div>
<div class="dialog-footer">
<!-- <div class="dialog-footer">
<el-button @click="Indexdialog = false">取消</el-button>
<el-button type="primary" @click="ConfirmForm"> 提交 </el-button>
</div>
</div> -->
<div class="foot_btn">
<el-button type="primary" @click="addingRecord">回复</el-button>
<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-button type="primary" @click="addireply">回复</el-button>
<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">
@ -524,16 +541,7 @@ import { getToken } from '@/utils/auth';
const $router = useRouter();
const $route = useRoute();
const Indexform = ref({
packList: [
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
],
packList: [],
decreaseImageEntityList: [], //
}); //
const IndexException = ref([]); //
@ -682,101 +690,83 @@ const onLoad = () => {
handle(); //
$_getInfo({ id: $route.query.id }).then(res => {
console.log(res, '回显返回值参数');
Indexform.value = res.data.data;
Indexform.value.result = [];
Indexform.value.processor = [];
Indexform.value.packageImage = [];
//
res.data.data.decreaseImageVOList.forEach(res => {
Indexform.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 => {
console.log(res, '回显返回值参数');
Indexform.value = res.data.data;
Indexform.value['result'] = [];
Indexform.value['processor'] = [];
//
Indexform.value.packList = res.data.data.decreaseImageVOList.map(res => {
return {
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, //ID
personResponsibleName: res.personResponsibleName, //
responsibilityRatio: res.responsibilityRatio, //
description: res.description, //
businessName: res.businessId,
};
});
res.data.data.processorVOList.forEach(item => {
if (item.typesOf == 2) {
//
Indexform.value.processor.push(item.businessId);
}
});
console.log(Indexform.value.processor, ' Indexform.value.processor');
getDictionaryBiz('pc_work_order').then(res => {
//
console.log(res, '环节字典');
Indexform.value.workOrderType = res.data.data.find(
res => res.dictKey == Indexform.value.workOrderStatus
).dictValue; //
});
//
getDictionaryBiz('pc_discovery_node').then(res => {
console.log(res, '发现环节');
// ProcessingResults.value = res.data.data;
TransportlossList.value = res.data.data;
console.log(TransportlossList.value, '处理好的发现环节');
// Indexform.discoveryNode
});
getDictionaryBiz('result_handling').then(res => {
console.log(res, '发现环节');
ProcessingResults.value = res.data.data;
});
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) {
//
Indexform.value.processor.push(item.businessId);
}
});
//
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: '',
// });
// Indexform.value.result.push(item.resultType);
// });
//
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: '',
// });
// Indexform.value.result.push(item.resultType);
// });
});
};
onLoad(); //
//
@ -947,7 +937,7 @@ const ConfirmForm = () => {
//
FangAddList.value.forEach(item => {
DataSubmit['personResponsibleDTO'].push({
businessName: warehouseData.value.find(obj => obj.value == item.businessName)?.label || null, //
businessName: warehouseData.value.find(obj => obj.value == item.businessName)?.label || null, //
businessId: warehouseData.value.find(obj => obj.value == item.businessName)?.value || null,
wordOrderId: Indexform.value.workOrderNumber, //ID
description: item.description,
@ -1169,6 +1159,19 @@ const ViewPackageDetails = val => {
dialogHistoricalPackage.value = false; //
};
//
const addireply = () => {
$router.push({
path: '/aftersales/aftersalesWorkOrderend',
query: {
id: $route.query.id,
name: $route.query.workOrderNumber + '-回复',
businessId: $route.query.workOrderNumber,
RouterState: 'determine',
index: '0',
},
});
};
//
const addingRecord = () => {
$router.push({
@ -1178,6 +1181,7 @@ const addingRecord = () => {
name: $route.query.workOrderNumber + '-添加异常记录',
businessId: $route.query.workOrderNumber,
RouterState: 'record',
index: '1',
},
});
};
@ -1186,12 +1190,12 @@ const EndJump = () => {
path: '/aftersales/aftersalesWorkOrderend',
query: {
id: $route.query.id,
name: $route.query.id + '-完结填写',
name: $route.query.workOrderNumber + '-完结填写',
RouterState: 'end',
index: '2',
},
});
};
</script>
<style scoped lang="scss">
@ -1251,6 +1255,7 @@ const EndJump = () => {
margin-left: 20px;
font-size: 14px;
width: 100px !important;
justify-content: flex-start;
}
.el-form-item {
margin: 0;
@ -1280,6 +1285,11 @@ const EndJump = () => {
margin-bottom: 10px;
font-size: 14px;
}
:deep(.el-upload-dragger) {
display: flex;
justify-content: center;
align-items: center;
}
}
.dialog-footer {
width: 100%;

88
src/views/aftersales/aftersalesWorkOrderend.vue

@ -2,16 +2,15 @@
<el-card class="box-card">
<template #header>
<div class="card-header">
<span>{{ routerState == 'end' ? '工单完结' : '添加异常记录' }}</span>
<el-button class="button" @click="submit">提交</el-button>
<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>
<div class="contemtMax">
<div class="left" :style="{ width: routerState == 'end' ? '100%' : '' }">
<div class="left">
<el-form :model="endFrom" label-width="120px">
<el-form-item label="运单商场">
<el-form-item label="运单商场" class="el_lab">
<el-input v-model="endFrom.waybillMall" disabled placeholder="请输入运单商场" />
</el-form-item>
@ -28,7 +27,7 @@
</el-form-item> -->
<!-- <div class="selector"> -->
<div class="el-form-item">
<div class="el-form-item el_lab" >
<span class="el-form-item__label">运损节点</span>
<el-select
v-model="endFrom.discoveryNode"
@ -53,16 +52,16 @@
<el-input v-model="endFrom.name" placeholder="请输入品类" />
</el-form-item> -->
<el-form-item label="异常类型">
<el-form-item label="异常类型" class="el_lab">
<el-input v-model="endFrom.workOrderType" disabled placeholder="异常类型" />
<!-- workOrderStatus -->
</el-form-item>
<el-form-item label="车次号">
<el-form-item label="车次号" class="el_lab">
<el-input v-model="endFrom.trainNumber" disabled placeholder="请输入车次号" />
</el-form-item>
<el-form-item label="运损时间">
<el-form-item label="运损时间" class="el_lab">
<el-date-picker
v-model="endFrom.warehousingTime"
type="datetime"
@ -73,7 +72,7 @@
/>
</el-form-item>
<el-form-item label="发货时间">
<el-form-item label="发货时间" class="el_lab">
<el-date-picker
v-model="endFrom.warehousingTime"
type="datetime"
@ -83,11 +82,11 @@
disabled
/>
</el-form-item>
<el-form-item label="钉钉流程号">
<el-form-item label="钉钉流程号" class="el_lab">
<el-input v-model="endFrom.processNumber" disabled placeholder="请输入钉钉流程号" />
</el-form-item>
<el-form-item label="处理方">
<el-form-item label="处理方" class="el_lab">
<el-select
v-model="endFrom.processor"
multiple
@ -165,7 +164,7 @@
<el-tab-pane label="包件信息">
<div class="ResponsibilityBoxS">
<div>
<el-button type="primary" @click="AddPackage" disabled> 添加信息 </el-button>
<!-- <el-button type="primary" @click="AddPackage" disabled> 添加信息 </el-button> -->
</div>
<div class="el_btbox" v-for="(item, index) in PackageInfo" :key="index">
<div class="leftbox">
@ -206,9 +205,9 @@
<el-button v-if="item.state" type="primary" @click="historicalPackages(index)">
查看历史包件
</el-button>
<el-button type="primary" @click="PackagRemoval(index)" disabled>
<!-- <el-button type="primary" @click="PackagRemoval(index)" disabled>
移除
</el-button>
</el-button> -->
</div>
</div>
<div class="NumTotal">
@ -219,12 +218,12 @@
</el-tabs>
<el-tabs type="border-card" style="width: 100%">
<el-tab-pane label="责任方选择">
<el-tab-pane label="责任方信息">
<div class="ResponsibilityBox">
<div>
<el-button type="primary" @click="responsibleParty" disabled>
<!-- <el-button type="primary" @click="responsibleParty" disabled>
添加信息
</el-button>
</el-button> -->
</div>
<div class="el_btbox" v-for="(item, index) in FangAddList" :key="index">
<div class="leftbox">
@ -306,9 +305,9 @@
</div>
</div>
<div class="el-btn">
<el-button type="primary" disabled @click="ResponsibilityRemoval(index)">
<!-- <el-button type="primary" disabled @click="ResponsibilityRemoval(index)">
移除
</el-button>
</el-button> -->
</div>
</div>
<div class="Proportion">
@ -334,9 +333,13 @@
</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"
@ -353,6 +356,9 @@
<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)">
@ -360,6 +366,7 @@
</el-button>
</div>
</div>
</div>
<div class="paySum">
<span>
<el-icon><Coin /></el-icon>:<b>{{
@ -373,7 +380,7 @@
</el-tab-pane>
</el-tabs>
<div class="selector" v-if="routerState != 'end'">
<div class="selector">
<div class="el-form-item selector">
<span class="el-form-item__label">处理结果</span>
<el-select
@ -384,6 +391,7 @@
:reserve-keyword="false"
placeholder="请选择处理结果"
@change="changeProcessingResults"
:disabled="$route.query.index=='0' || $route.query.index=='2'"
>
<el-option
v-for="item in ProcessingResults"
@ -449,11 +457,14 @@
</div>
</div>
<!-- 处理结果说明 -->
<el-form-item label="处理结果说明" v-if="routerState != 'end'">
<el-form-item label="处理结果说明" v-if="routerState != 'end'" 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'"
/>
</el-form-item>
@ -463,8 +474,9 @@
<el-input
v-model="endFrom.problemDescription"
type="textarea"
:autosize="{ minRows: 2, maxRows: 4 }"
:autosize="{ minRows: 3, maxRows: 4 }"
placeholder="请输入异常问题描述"
:disabled="$route.query.index =='0' "
/>
</el-form-item>
</div>
@ -473,6 +485,7 @@
<div class="Transport_damage_photos">
<span class="title">图片</span>
<el-upload
:disabled="$route.query.index =='0' "
v-model:file-list="endFrom.packageImage"
list-type="picture-card"
:on-preview="pictureList"
@ -501,6 +514,7 @@
:action="doubledCount"
:headers="headers"
:on-success="ViodSuccess"
:disabled="$route.query.index =='0' "
>
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">
@ -509,7 +523,7 @@
</div>
</el-upload>
</div>
<div class="el_sub">
<div class="el_sub" v-if="$route.query.index !='0'">
<el-button type="primary" class="button" @click="submit">提交</el-button>
</div>
<!-- 视频预览弹窗 -->
@ -570,7 +584,7 @@
</div>
</el-form>
</div>
<el-affix :offset="msgTop" v-if="routerState != 'end'">
<el-affix :offset="msgTop" >
<div class="right">
<el-tabs type="border-card">
<div class="content">
@ -948,6 +962,7 @@ const {
const TransportChange = val => {
console.log(val, '运损触发事件');
};
//
const onLoad = () => {
//
@ -1758,7 +1773,6 @@ const ViewPackageDetails = val => {
margin: 0;
margin-bottom: 10px;
flex: 1 0 30%;
margin-right: 8px;
.el-select {
width: 100%;
}
@ -1796,6 +1810,7 @@ const ViewPackageDetails = val => {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 16px;
.title {
position: absolute;
top: -20px;
@ -1843,11 +1858,12 @@ const ViewPackageDetails = val => {
}
.notes {
width: 100%;
margin-top: 20px;
margin-top:40px;
}
.Transport_damage_photos {
width: 100%;
display: flex;
margin-top: 26px;
.title {
width: 100px;
color: #606266;
@ -1910,6 +1926,15 @@ const ViewPackageDetails = val => {
display: flex;
align-items: center;
}
.el_pklab{
width: 50px;
}
.el_pkLi{
width: 100%;
display: flex;
justify-content: space-between;
}
}
.payanindemnity {
display: flex;
@ -1924,7 +1949,8 @@ const ViewPackageDetails = val => {
}
.sk_input {
margin: 0 5px;
width: 300px;
margin-left: 20px;
width: 20%;
}
.el-button {
border: none;
@ -2199,4 +2225,10 @@ const ViewPackageDetails = val => {
justify-content: flex-end;
margin: 4px 0;
}
.el_resj{
margin-top:20px !important;
}
.el_lab{
margin-right: 10px !important;
}
</style>

5
src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue

@ -836,6 +836,11 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
inputsc(index, row) {
this.query[row.prop] = index;
this.page.currentPage = 1;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {

115
src/views/distribution/artery/VehicleStowageDetails.vue

@ -172,20 +172,7 @@
:loading="loadingObj.stowageLoading"
ref="nodeInfoRef"
>
<template #default="slotProps">
<el-input-number
controls-position="right"
:precision="2"
:min="0"
:step="1"
:disabled="
Number(details.pageType) === 2 ||
slotProps.scope.row.blackList.includes(slotProps.scope.column.property)
"
@input="handleComputedNum"
v-model="slotProps.scope.row[slotProps.scope.column.property]"
/>
</template>
<template #default="slotProps"> </template>
</tablecmt>
<!-- 标题 运单信息 -->
@ -240,13 +227,22 @@
<!-- 表格 -->
<tablecmt
ref="oldColumnListNode"
:columnList="details.columnList"
:columnList="details.detailsColumnList"
:tableData="details.oldData"
:loading="loadingObj.oldListLoading"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
:arraySpanMethod="
(row) => {
console.log('row :>> ', row);
if (row.columnIndex === 0) {
if (row.rowIndex === 0) return [2, 1];
else if (row.rowIndex === 1) return [0, 0];
}
}
"
>
</tablecmt>
<!-- 分页模块 -->
@ -388,7 +384,7 @@
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
:columnList="details.detailsColumnList"
>
</edittablehead>
</template>
@ -401,11 +397,7 @@ import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, computeNumber, setNodeHeight, debounce } from '@/utils/util';
import {
columnList,
newColumnList,
nodeInfoColumnList,
} from '@/option/distribution/addVehicleStowage';
import { detailsColumnList, nodeInfoColumnList } from '@/option/distribution/addVehicleStowage';
import {
postloadFindLoadInitData,
@ -477,9 +469,7 @@ const details = reactive<any>({
/** 修改的列表信息 */
editColumnList: [],
/** 运单池 */
columnList,
/** 调度池 */
newColumnList,
detailsColumnList,
/** 节点列表 */
nodeInfoColumnList,
nodeInfoData: [],
@ -632,11 +622,11 @@ onMounted(() => {
let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList');
let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist');
if (checkListnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.head = false;
});
checkListnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
item.head = true;
}
@ -644,7 +634,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.head) {
arr.push(item.label);
}
@ -652,11 +642,11 @@ onMounted(() => {
functions.setStorage(window.location.pathname + 'checkList', arr);
}
if (flexListnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.fixed = false;
});
flexListnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
if (item.type == 6) {
item.fixed = 'right';
@ -668,7 +658,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.fixed) {
arr.push(item.label);
}
@ -676,11 +666,11 @@ onMounted(() => {
functions.setStorage(window.location.pathname + 'flexList', arr);
}
if (sortlistnewarr) {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
item.sortable = false;
});
sortlistnewarr.map(ite => {
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (ite == item.label) {
item.sortable = true;
}
@ -688,7 +678,7 @@ onMounted(() => {
});
} else {
let arr = [];
details.columnList.map(item => {
details.detailsColumnList.map(item => {
if (item.sortable) {
arr.push(item.label);
}
@ -765,7 +755,7 @@ const showdrawer = (_flag?: boolean, _type?: number) => {
switch (_type) {
default:
console.log('123 :>> ', 123);
details.editColumnList = details.columnList;
details.editColumnList = details.detailsColumnList;
break;
// details.
}
@ -852,61 +842,17 @@ const currentChange = (pageNum: number) => {
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.columnList = newarr;
details.detailsColumnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
details.detailsColumnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
details.detailsColumnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
};
/** 加入调度池 */
const handleAddWaybill = () => {
details.newData = details.selectionList.map(val => {
val.planNum = val.stockNum;
val.loadingNum = 0;
return val;
});
details.orderCodeList = [
...new Set([
...details.orderCodeList,
...details.selectionList.map(val => val.orderCode + ',' + val.waybillNo),
]),
];
console.log('details.orderCodeList :>> ', details.orderCodeList);
const orderCodes = details.selectionList.map(val => val.orderCode);
clearSelectionList();
details.page.pageNum = 1;
initOriginWarehouseOrder();
};
/** 移除调度池 */
const handleRemoveWaybill = () => {
//
details.newData = details.newData.filter((val, index) => {
const _flag = !details.newSelectionList.includes(val);
if (!_flag) {
const _code = val.orderCode + ',' + val.waybillNo;
const _index = details.orderCodeList.indexOf(_code);
// +
details.orderCodeList.splice(_index, 1);
}
return _flag;
});
clearSelectionList();
initOriginWarehouseOrder();
};
/** 新增承运商 */
const handleAddCarrier = () => {
$router.push({ path: '/basicdata/carrier/basicdataCarrier' });
};
/** 选择承运商 */
const carrierNameChange = () => {};
@ -920,6 +866,13 @@ const handleNameChange = () => {
form.value.driverMobile = _value.driverPhone;
};
const arraySpanMethod = (row, column, rowIndex, columnIndex) => {
console.log('row :>> ', row);
console.log('column :>> ', column);
console.log('rowIndex :>> ', rowIndex);
console.log('columnIndex :>> ', columnIndex);
};
/** 关闭页面 */
const back = () => {
$store.commit('DEL_TAG_CURRENT');

57
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -162,16 +162,28 @@
@selection="selectionChange"
>
<template #default="slotProps">
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)"
>查看</el-text
>
<el-text
type="primary"
text
icon="el-icon-edit"
@click="handleCallDeliveryOwn(slotProps.scope)"
>修改客户信息</el-text
>
<template v-if="slotProps.scope.column.label === '货位信息'">
<el-tag
v-for="item in slotProps.scope.row.allocation
? slotProps.scope.row.allocation.split(',')
: []"
:key="item"
>{{ item }}</el-tag
>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">
查看
</el-text>
<el-text
type="primary"
text
icon="el-icon-edit"
@click="handleCallDeliveryOwn(slotProps.scope)">
修改客户信息
</el-text>
</template>
</template>
</tablecmt>
</el-row>
@ -463,14 +475,22 @@ export default {
columnList: [
{
prop: '',
label: '序号',
label: '复选框',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'waybillNumber',
label: '运单号',
@ -563,7 +583,7 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'consigneeUnit',
label: '收货单位',
@ -693,9 +713,9 @@ export default {
{
prop: 'allocation',
label: '货位信息',
type: 1,
type: 13,
values: '',
width: '140',
width: '250',
checkarr: [],
fixed: false,
sortable: true,
@ -1844,4 +1864,11 @@ export default {
display: flex;
align-items: flex-end;
}
//
:deep(.el-tag) {
margin: 0 3px;
--el-tag-bg-color: var(--el-color-info-light-9);
color: var(--el-color-primary);
}
</style>

37
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -106,7 +106,7 @@
<h3>包件信息</h3>
<div class="plck">
<el-button type="primary" @click="allhandleQRCode">批量查看二维码</el-button>
<el-button v-if="dataMaterial" type="primary" @click="handleMaterialList()"
<el-button type="primary" @click="handleMaterialList()"
>补充物料信息</el-button
>
</div>
@ -144,9 +144,17 @@
text
icon="el-icon-view"
v-if="!slotProps.scope.row.materialId"
@click="handleMaterial(slotProps.scope.row)"
@click="handleMaterial(slotProps.scope.row,'1')"
>补充物料信息</el-text
>
<el-text
type="primary"
text
icon="el-icon-view"
v-if="slotProps.scope.row.materialId"
@click="handleMaterial(slotProps.scope.row,'2')"
>修改物料信息</el-text
>
</template>
</tablecmt>
@ -1226,11 +1234,28 @@ export default {
this.form = res.data.data;
});
},
handleMaterial(row) {
console.log('row>>>', row);
this.titleMaterial = '补充物料';
async handleMaterial(row,index) {
// console.log('row>>>', row);
if(index === "2"){
this.titleMaterial = '修改物料';
this.formMaterial = row;
this.loading = true;
getListMaterial(this.page.currentPage, this.page.pageSize, {
productCode: row.materialCode,
}).then(res =>{
// console.log('', res.data.data.records[0].sku);
this.formMaterial.sku = res.data.data.records[0].sku;
});
this.loading = false;
this.optionsName = [{id: row.materialId,name: row.materialName}]
this.optionsCode = [{id: row.materialId,productCode: row.materialCode}]
// console.log("333333",this.optionsCode[0]);
}else{
this.titleMaterial = '补充物料';
this.formMaterial.id = row.id;
}
this.materialBox = true;
this.formMaterial.id = row.id;
console.log("_+_+_+_+_+_+_",index);
},
allhandleQRCode() {
console.log(this.selectionList);

8
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -2406,10 +2406,10 @@ export default {
this.$refs.form.validate(async valid => {
if (valid) {
if (!this.form.id) {
if (this.fileListSell.length === 0) {
this.$message.warning('请上传提货证件!!!');
return;
}
// if (this.fileListSell.length === 0) {
// this.$message.warning('');
// return;
// }
let fei = new Map();
console.log('123 :>> ', 123);
this.bianLier(this.costListName, this.clientType, this.costList, fei);

23
src/views/distribution/reservation/atlas.vue

@ -40,6 +40,7 @@ import { getDictionaryBiz } from '@/api/system/dict';
import { onMounted, reactive, toRefs, watchEffect } from 'vue';
import { useRouter } from 'vue-router';
import { selectStockArticleAtlasInfo } from '@/api/distribution/distributionDeliveryList';
import { ElMessage } from 'element-plus';
// import { getReservationAddr } from '@/api/distribution/distributionReservation';
let router = useRouter();
let useStores = useStore();
@ -90,28 +91,23 @@ watchEffect(() => {
// }, 5000);
});
function initmap() {
AMap.plugin("AMap.Geocoder",function(){
AMap.plugin('AMap.Geocoder', function () {
details.mapLoc = new AMap.Map('container', {
viewMode: '2D', // 使 2D
zoom: 9, //
center: [104.293242, 30.582939], //
viewMode: '2D', // 使 2D
zoom: 9, //
center: [104.293242, 30.582939], //
});
});
})
}
function checkgoto() {
let ids = [];
details.datalists.map(item => {
console.log('item>>>>>>>>>>>>>>',item);
console.log('item>>>>>>>>>>>>>>', item);
if (item.isck) {
ids.push(item.items.id);
}
});
console.log("ids>>>>>>>>>>>",ids);
console.log('ids>>>>>>>>>>>', ids);
if (ids.length == 0) {
return;
}
@ -130,6 +126,9 @@ function init(data) {
let geocodess = [];
var geocoder = new AMap.Geocoder({});
data.map(async (item, index) => {
if (!item.jingdu || !item.weidu) {
return ElMessage.warning('地址有问题');
}
var marker = new AMap.Marker({
map: details.mapLoc,
position: [item.jingdu, item.weidu],

10
src/views/distribution/reservation/reservationAddFrom.vue

@ -2920,7 +2920,9 @@ export default {
this.onLoadOrder(this.page);
},
async onLoadOrder(page, params = {}) {
this.query.typeService = 2;
try {
this.loading = true
this.query.typeService = 2;
this.query.genre = '1';
if (this.marketName) this.query.marketName = this.marketName;
if (this.orderData.length !== 0) {
@ -2949,6 +2951,12 @@ export default {
}
this.orderList = [];
return null;
} catch (error) {
console.log('error :>> ', error);
}finally{
this.loading = false
return null
}
},
onLoad() {

Loading…
Cancel
Save