|
|
|
@ -1680,16 +1680,16 @@ const initPageInfo = async () => {
|
|
|
|
|
|
|
|
|
|
details.query.xianPay = isNumber(data.warehouseWaybill.xpay) |
|
|
|
|
? Number(data.warehouseWaybill.xpay) |
|
|
|
|
: data.warehouseWaybill.xpay; |
|
|
|
|
: data.warehouseWaybill.xpay || 0; |
|
|
|
|
details.query.huiPay = isNumber(data.warehouseWaybill.hpay) |
|
|
|
|
? Number(data.warehouseWaybill.hpay) |
|
|
|
|
: data.warehouseWaybill.hpay; |
|
|
|
|
: data.warehouseWaybill.hpay || 0; |
|
|
|
|
details.query.yuePay = isNumber(data.warehouseWaybill.ypay) |
|
|
|
|
? Number(data.warehouseWaybill.ypay) |
|
|
|
|
: data.warehouseWaybill.ypay; |
|
|
|
|
: data.warehouseWaybill.ypay || 0; |
|
|
|
|
details.query.daoPay = isNumber(data.warehouseWaybill.dpay) |
|
|
|
|
? Number(data.warehouseWaybill.dpay) |
|
|
|
|
: data.warehouseWaybill.dpay; |
|
|
|
|
: data.warehouseWaybill.dpay || 0; |
|
|
|
|
// 转译到站 |
|
|
|
|
if (details.regionOptione.length !== 0) { |
|
|
|
|
handleTranslationLocation('departure'); |
|
|
|
@ -1807,7 +1807,23 @@ const onLoad = async () => {
|
|
|
|
|
details.query.transportType = '1'; |
|
|
|
|
details.query.deliveryWay = '1'; |
|
|
|
|
details.query.urgency = '1'; |
|
|
|
|
details.query.destination = ''; |
|
|
|
|
// details.query.destination = ''; |
|
|
|
|
details.query.shipperId = data.shipperClientId || ''; |
|
|
|
|
details.query.consigneeId = data.consigneeClientId || ''; |
|
|
|
|
|
|
|
|
|
details.query.destination = data.destinationArray || []; |
|
|
|
|
details.query.departure = data.departureArray || []; |
|
|
|
|
details.query.queryDestinationWarehouseName = data.destinationWarehouseName || ''; |
|
|
|
|
// 是否提货 |
|
|
|
|
details.query.isPickUp = details.query.isPickUp ? details.query.isPickUp : 0; |
|
|
|
|
// 是否整车 -- 提货 |
|
|
|
|
details.query.pickupCompleteOrNot = details.query.pickupCompleteOrNot |
|
|
|
|
? details.query.pickupCompleteOrNot |
|
|
|
|
: 0; |
|
|
|
|
// 是否整车 -- 干线 |
|
|
|
|
details.query.trunklineCompleteOrNot = details.query.trunklineCompleteOrNot |
|
|
|
|
? details.query.trunklineCompleteOrNot |
|
|
|
|
: 0; |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|