|
|
@ -288,7 +288,7 @@ |
|
|
|
<el-table |
|
|
|
<el-table |
|
|
|
:data="details.consigneeNameOptions" |
|
|
|
:data="details.consigneeNameOptions" |
|
|
|
style="width: 100%" |
|
|
|
style="width: 100%" |
|
|
|
@@row-click=" |
|
|
|
@row-click=" |
|
|
|
(column, prop, order) => { |
|
|
|
(column, prop, order) => { |
|
|
|
handleChooseConsigner(column, prop, order); |
|
|
|
handleChooseConsigner(column, prop, order); |
|
|
|
} |
|
|
|
} |
|
|
@ -2062,6 +2062,14 @@ const handleChooseShipper = (column, prop, order) => { |
|
|
|
details.query.shipperName = column.linkMan; |
|
|
|
details.query.shipperName = column.linkMan; |
|
|
|
details.query.shipperMobile = column.linkPhone; |
|
|
|
details.query.shipperMobile = column.linkPhone; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 发站 |
|
|
|
|
|
|
|
const _departure = []; |
|
|
|
|
|
|
|
if (column.provinceId) _departure[0] = column.provinceId; |
|
|
|
|
|
|
|
if (column.cityId) _departure[1] = column.cityId; |
|
|
|
|
|
|
|
if (column.areaId) _departure[2] = column.areaId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (_departure.length > 0) details.query.departure = _departure; |
|
|
|
|
|
|
|
|
|
|
|
handleFindClientInfo('shipper'); |
|
|
|
handleFindClientInfo('shipper'); |
|
|
|
handleFindClientInfo('shipperName'); |
|
|
|
handleFindClientInfo('shipperName'); |
|
|
|
handleFindClientInfo('shipperMobile'); |
|
|
|
handleFindClientInfo('shipperMobile'); |
|
|
@ -2077,6 +2085,23 @@ const handleChooseConsigner = (column, prop, order) => { |
|
|
|
details.query.consigneeName = column.linkMan; |
|
|
|
details.query.consigneeName = column.linkMan; |
|
|
|
details.query.consigneeMobile = column.linkPhone; |
|
|
|
details.query.consigneeMobile = column.linkPhone; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 仓库 |
|
|
|
|
|
|
|
if (column.destinationWarehouseId) { |
|
|
|
|
|
|
|
details.query.destinationWarehouseId = column.destinationWarehouseId; |
|
|
|
|
|
|
|
details.query.destinationWarehouseName = column.destinationWarehouseName; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 送货方式 |
|
|
|
|
|
|
|
if (column.defaultDeliveryWay) details.query.deliveryWay = column.defaultDeliveryWay; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 到站 |
|
|
|
|
|
|
|
const _destination = []; |
|
|
|
|
|
|
|
if (column.provinceId) _destination[0] = column.provinceId; |
|
|
|
|
|
|
|
if (column.cityId) _destination[1] = column.cityId; |
|
|
|
|
|
|
|
if (column.areaId) _destination[2] = column.areaId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (_destination.length > 0) details.query.destination = _destination; |
|
|
|
|
|
|
|
|
|
|
|
handleFindClientInfo('consignee'); |
|
|
|
handleFindClientInfo('consignee'); |
|
|
|
handleFindClientInfo('consigneeName'); |
|
|
|
handleFindClientInfo('consigneeName'); |
|
|
|
handleFindClientInfo('consigneeMobile'); |
|
|
|
handleFindClientInfo('consigneeMobile'); |
|
|
|