123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- <template>
- <div class="waybill">
- <div class="waybill-info">
- <div class="waybill-info-title">运单基本信息</div>
- <div class="waybill-info-content flex">
- <div
- v-for="(item, index) in waybillInfoItems"
- :key="index"
- class="waybill-info-item"
- >
- <div>{{ item.label }}:</div>
- <el-tooltip
- :disabled="!computedWaybillInfo(item) || !item.showOverflowTooltip"
- :content="computedWaybillInfo(item)"
- effect="light"
- >
- <div>{{ computedWaybillInfo(item) }}</div>
- </el-tooltip>
- </div>
- </div>
- </div>
- <div class="waybill-header flex">
- <div class="waybill-header-title flex-wrap">
- <div class="manageTitle">运单跟踪信息</div>
- <div class="status">正常</div>
- </div>
- <div class="waybill-header-operate flex-wrap">
- <Search @clear="clear" @search="search" />
- <el-button
- class="button-sqaure"
- :icon="Download"
- color="#ac014d"
- @click="downloadHandler"
- />
- <ColumnSet
- class="button-sqaure"
- :table-columns="tableColumns"
- @checked-submit="columnChecked"
- />
- </div>
- </div>
- <div
- v-show="trackAirlines.length"
- :style="{
- maxHeight: trackAirlines.length > 1 ? `${208 * 2 + 8}px` : '208px',
- }"
- class="waybill-track"
- >
- <el-scrollbar always>
- <div class="waybill-track-warpper">
- <div
- v-for="trackAirline in trackAirlines"
- :key="trackAirline.flightNO"
- class="waybill-track-row"
- >
- <div
- v-for="(trackAirport, index) in trackAirline.airports"
- :key="trackAirport.airport"
- class="waybill-track-box"
- :style="trackBoxStyle(trackAirline.airports, index)"
- >
- <div class="title flex-wrap">
- <span v-if="index === 0" class="title-span"
- >航班号:{{ trackAirline.flightNO }}</span
- >
- <span class="title-span"
- >{{ trackAirport.isDeparture ? '出港' : '进港' }}:{{
- trackAirport.airport
- }}</span
- >
- <span class="title-span"
- >日期:{{ trackAirline.flightDate }}</span
- >
- </div>
- <Steps :steps="trackAirport.trackSteps" />
- </div>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <div class="goods-list">
- <SimpleTable
- ref="tableRef"
- :data="tableData"
- :columns="filteredColumns"
- scrollbar-always-on
- :row-class-name="rowClass"
- :cell-class-name="cellClass"
- @cell-click="cellClickHandler"
- :column-props="{ formatter, minWidth: 75 }"
- />
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { Download } from '@element-plus/icons-vue'
- import Search from '@/components/search/index.vue'
- import Steps from '@/components/steps/index.vue'
- import ColumnSet from '@/components/ColumnSet/index.vue'
- import SimpleTable from '@/components/SimpleTable/index.vue'
- import { useTrackData } from '../../hooks/useTrackData'
- import { useTable } from '../../hooks/useTable'
- import { useTableColumnSet } from '@/hooks/useTableColumnSet'
- import { useTableExport } from '../../hooks/useTableExport'
- import { useTableStyle } from '../../hooks/useTableStyle'
- import { useTableCellClick } from '../../hooks/useTableCellClick'
- import { useWaybillInfo } from './useWaybillInfo'
- import { CommonData } from '~/common'
- import { useLoop } from '@/hooks/useLoop'
- const props = defineProps({
- name: {
- type: String,
- required: true,
- },
- })
- const route = useRoute()
- const { flightDate, waybillNO } = route.query
- const dataContent = [flightDate, waybillNO] as string[]
- const {
- waybillInfoItems,
- waybillInfo,
- computedWaybillInfo,
- getWaybillInfo,
- } = useWaybillInfo(props.name, dataContent)
- const { tableColumns, tableData: trackData, getTableData } = useTable(
- `${props.name}Goods`,
- dataContent
- )
- useLoop([getWaybillInfo, getTableData], 'waybill')
- const { trackAirlines, trackBoxStyle } = useTrackData(props.name, trackData)
- const tableData = computed(() => {
- const mergedTableData = trackData.value.reduce(
- (data: CommonData[], current) => {
- const sameRow = data.find(row =>
- ['stockCode', 'flightNO', 'flightDate', 'cargoSN'].every(
- key => row[key] === current[key]
- )
- )
- const {
- stockCode,
- flightNO,
- flightDate,
- departureAirport, // 装载机场
- arriveAirport, // 卸载机场
- ULDNO,
- cargoSN,
- pullMark,
- returnMark,
- // transMark,
- exceptionCustomsMark,
- execPosition, // 读取位置
- nodeCode, // 节点名称
- ConsignmentItemPackagingQuantityQuantity, // 跟踪节点件数
- execResult,
- execTime,
- } = current
- const nodeValue = `${execPosition ?? ''}\n${
- execResult ? '通过' : '未通过'
- }\n${execTime ?? ''}`
- if (sameRow) {
- sameRow[String(nodeCode)] = nodeValue
- ;[
- 'ULDNO',
- // 'cargoSN'
- ].forEach(key => {
- const oldValue = sameRow[key]
- const currentValue = current[key]
- if (typeof currentValue === 'string' && currentValue !== oldValue) {
- if (typeof oldValue === 'string') {
- sameRow[key] = [
- ...new Set([
- ...oldValue.split(','),
- ...currentValue.split(','),
- ]),
- ].join(',')
- } else {
- sameRow[key] = currentValue
- }
- }
- })
- ;['pullMark', 'returnMark'].forEach(key => {
- sameRow[key] = sameRow[key] ?? current[key]
- })
- } else {
- data.push({
- ...current,
- [String(nodeCode)]: nodeValue,
- })
- }
- return data
- },
- []
- )
- return mergedTableData.reduce((data: CommonData[], current) => {
- const { cargoSN } = current
- if (typeof cargoSN === 'string') {
- const splitedRows = cargoSN.split(',').map(splitedCargoSN => ({
- ...current,
- cargoSN: splitedCargoSN,
- }))
- data.push(...splitedRows)
- }
- return data
- }, [])
- })
- const formatter = (row, column, cellValue, index) => {
- const value = String(cellValue ?? '').split('\n')
- if (value[2]) {
- value[2] = value[2].split('T')[1].slice(0, -3)
- }
- return value.join('\n')
- }
- const search = (text: string) => {
- console.log(text)
- }
- const clear = () => {}
- const tableRef = ref<InstanceType<typeof SimpleTable> | null>(null)
- const { exportToExcel } = useTableExport()
- const downloadHandler = () => {
- const table = tableRef.value!.table!
- exportToExcel({ table })
- }
- const { filteredColumns, columnChecked } = useTableColumnSet(tableColumns)
- const { rowClass, cellClass } = useTableStyle(`${props.name}Goods`)
- const { cellClickHandler } = useTableCellClick(`${props.name}Goods`)
- </script>
- <style lang="scss" scoped>
- .waybill {
- height: 100%;
- display: flex;
- flex-direction: column;
- &-info {
- height: 144px;
- background: #410425;
- padding: 24px 30px;
- color: #ffffff;
- &-title {
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- margin-bottom: 40px;
- }
- &-item {
- display: flex;
- .el-tooltip__trigger {
- max-width: 300px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- &-header :deep {
- margin: 24px 0;
- line-height: 32px;
- .status {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #519f6b;
- }
- .el-button {
- background-color: #d5327b;
- border: none;
- }
- .button-sqaure {
- width: 30px;
- height: 30px;
- border-radius: 4px;
- font-size: 16px;
- margin-left: 24px;
- &:first-of-type {
- margin-left: 35px;
- }
- }
- }
- &-track {
- height: 0;
- flex: 1.5;
- &-row {
- height: 208px;
- display: flex;
- &:not(:last-child) {
- margin-bottom: 8px;
- }
- }
- &-box {
- background: #ffffff;
- padding: 24px 24px 12px 24px;
- &:not(:last-child) {
- margin-right: 8px;
- }
- .title {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #101116;
- margin-bottom: 10px;
- &-span:not(:last-of-type) {
- margin-right: 8px;
- }
- }
- }
- }
- .goods-list :deep {
- margin-top: 16px;
- height: 0;
- flex: 1;
- .el-table__body .el-table__cell .cell {
- padding: 4px 8px;
- }
- }
- }
- </style>
|