|
@@ -15,6 +15,7 @@ const waybillInfoItemsMap = {
|
|
|
{
|
|
|
label: '品名',
|
|
|
key: 'typeCode',
|
|
|
+ showOverflowTooltip: true,
|
|
|
},
|
|
|
{
|
|
|
label: '特货信息',
|
|
@@ -40,60 +41,44 @@ const waybillInfoItemsMap = {
|
|
|
international: [
|
|
|
{
|
|
|
label: '运单',
|
|
|
- key: 'stockCode,',
|
|
|
+ key: 'stockCode',
|
|
|
},
|
|
|
{
|
|
|
label: '运单类型',
|
|
|
- key: 'stockType,',
|
|
|
+ key: 'stockType',
|
|
|
},
|
|
|
{
|
|
|
label: '货代公司',
|
|
|
- key: 'cargoCompany,',
|
|
|
+ key: 'cargoCompany',
|
|
|
},
|
|
|
{
|
|
|
label: '品名',
|
|
|
- key: 'typeCode,',
|
|
|
+ key: 'typeCode',
|
|
|
+ showOverflowTooltip: true,
|
|
|
},
|
|
|
{
|
|
|
label: '特货信息',
|
|
|
- key: 'speCargoInfo,',
|
|
|
+ key: 'speCargoInfo',
|
|
|
},
|
|
|
{
|
|
|
label: '始发机场',
|
|
|
- key: 'departureAirport,',
|
|
|
+ key: 'departureAirport',
|
|
|
},
|
|
|
{
|
|
|
label: '目的机场',
|
|
|
- key: 'arriveAirport,',
|
|
|
+ key: 'arriveAirport',
|
|
|
},
|
|
|
],
|
|
|
}
|
|
|
|
|
|
-const simulateWaybillInfoMap = {
|
|
|
- internal: {
|
|
|
- C0: 'FA56888829',
|
|
|
- C1: '深圳市联运通货有限公司',
|
|
|
- C3: '电路板、手机外壳',
|
|
|
- C4: '特',
|
|
|
- C5: 'SZX',
|
|
|
- C6: 'NKG',
|
|
|
- C7: '7件',
|
|
|
- C8: '82KG',
|
|
|
- },
|
|
|
- international: {
|
|
|
- C0: 'FA56888829',
|
|
|
- C1: '国际普货',
|
|
|
- C2: '深圳市联运通货有限公司',
|
|
|
- C3: '电路板、手机外壳',
|
|
|
- C4: '特',
|
|
|
- C5: 'SZX',
|
|
|
- C6: 'NKG',
|
|
|
- },
|
|
|
-}
|
|
|
-
|
|
|
export function useWaybillInfo(name: string, dataContent: CommonValue[]) {
|
|
|
const waybillInfoItems = ref<
|
|
|
- { label: string; key?: string; getter?: (info: any) => string }[]
|
|
|
+ {
|
|
|
+ label: string
|
|
|
+ key?: string
|
|
|
+ getter?: (info: any) => string
|
|
|
+ showOverflowTooltip?: boolean
|
|
|
+ }[]
|
|
|
>([])
|
|
|
const getWaybillInfoItems = () => {
|
|
|
waybillInfoItems.value =
|
|
@@ -131,19 +116,12 @@ export function useWaybillInfo(name: string, dataContent: CommonValue[]) {
|
|
|
if (item.getter) {
|
|
|
return item.getter(waybillInfo)
|
|
|
} else if (item.key) {
|
|
|
- return waybillInfo[item.key]
|
|
|
+ return String(waybillInfo[item.key] ?? '')
|
|
|
} else {
|
|
|
return ''
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- // const getSimulateWaybillInfo = () => {
|
|
|
- // const simulateWaybillInfo =
|
|
|
- // simulateWaybillInfoMap[
|
|
|
- // name.includes('International') ? 'international' : 'internal'
|
|
|
- // ]
|
|
|
- // Object.assign(waybillInfo, simulateWaybillInfo)
|
|
|
- // }
|
|
|
return {
|
|
|
waybillInfoItems,
|
|
|
waybillInfo,
|