123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- <template>
- <div class="container-view">
- <div class="container-basic">
- <div class="title">
- <div class="manageTitle">容器基本信息</div>
- <el-button
- type="primary"
- size="small"
- @click="toContainerHistory"
- >历史记录</el-button>
- </div>
- <div
- ref="basicBox"
- class="basic-info-box"
- >
- <el-row :gutter="10">
- <el-col
- :xs="6"
- :sm="6"
- :xl="4"
- >
- <div class="grid-content">容器编号:{{ $route.query.containerID }}</div>
- </el-col>
- <el-col
- :xs="6"
- :sm="6"
- :xl="3"
- >
- <div class="grid-content">容器类型:{{ $route.query.containerType }}</div>
- </el-col>
- <el-col
- :xs="6"
- :sm="6"
- :xl="3"
- >
- <div class="grid-content">舱位:{{ $route.query.containerSpace }}</div>
- </el-col>
- <el-col
- :xs="6"
- :sm="6"
- :xl="3"
- >
- <div class="grid-content">航班号:{{ $route.query.flightNO }}</div>
- </el-col>
- <el-col
- :xs="12"
- :sm="12"
- :xl="5"
- >
- <div class="grid-content">航班日期:{{ $route.query.flightDate }}</div>
- </el-col>
- <el-col
- :xs="6"
- :sm="6"
- :xl="3"
- >
- <div class="grid-content">起飞站:{{ $route.query.departureAirport }}</div>
- </el-col>
- <el-col
- :xs="6"
- :sm="6"
- :xl="3"
- >
- <div class="grid-content">目的站:{{ $route.query.landingAirport }}</div>
- </el-col>
- </el-row>
- </div>
- </div>
- <div class="container-table">
- <div class="title">
- <div class="manageTitle">容器行李列表</div>
- <!-- <TimeZoneSelector /> -->
- <img
- class="btn-square btn-shadow"
- src="@/assets/baggage/ic_export.png"
- title="导出"
- @click="exportHandler('table', '容器行李列表')"
- >
- <img
- class="btn-square btn-shadow"
- src="@/assets/baggage/ic_setting.png"
- title="列设置"
- @click="show"
- >
- </div>
- <div class="table-wrapper">
- <el-table
- ref="table"
- :data="dealedTableData"
- :height="computedTableHeight"
- border
- stripe
- size="mini"
- show-summary
- :summary-method="summaryRow(dealedTableData.length)"
- :header-cell-class-name="headerCellClass"
- :header-cell-style="{ color: '#101116' }"
- :row-class-name="rowClass"
- :cell-class-name="cellClass"
- @cell-click="cellClickHandler"
- >
- <el-table-column
- v-for="col in tableColsCopy"
- :key="col.index"
- :prop="col.prop"
- :label="col.label"
- :align="col.align || 'center'"
- :width="col.width"
- :fixed="col.fixed"
- :formatter="tableFormat"
- >
- <template #header>
- <TableHeaderCell
- :label="col.label"
- :filter-options="tableDataFilters[col.prop]"
- :filter-values.sync="filterValues[col.prop]"
- :sortable="col.sortable"
- :sort-rule.sync="tableDataSortRules[col.prop]"
- />
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <!--列设置-->
- <Dialog
- :flag="dialogFlag"
- class="dialog-check-group"
- >
- <div class="dialog-wrapper">
- <div class="title">列设置</div>
- <div class="content">
- <el-tree
- :data="tableCols"
- :class="colsCheckClass"
- show-checkbox
- node-key="index"
- :default-expand-all="true"
- :props="{
- label: 'label',
- children: 'children',
- }"
- :default-checked-keys="checkedKeysTemp"
- @check="handleCheck"
- />
- </div>
- <div class="foot right t30">
- <el-button
- size="medium"
- class="r24"
- type="primary"
- @click="onCheck('tableData')"
- >确定</el-button>
- <el-button
- size="medium"
- @click="hide"
- >取消</el-button>
- </div>
- </div>
- </Dialog>
- </div>
- </template>
- <script>
- import Dialog from '@/layout/components/Dialog/index.vue'
- // import TimeZoneSelector from '@/components/TimeZoneSelector'
- import { myQuery } from '@/api/dataIntegration'
- import tableColsMixin from '../../mixins/tableCols'
- import timeZoneMixin from '../../mixins/timeZone'
- import TableHeaderCell from '@/components/TableHeaderCell'
- import { setTableFilters } from '@/utils/table'
- import { mapGetters } from 'vuex'
- import { throttledExportToExcel } from '@/utils/table'
- export default {
- name: 'ContainerView',
- components: {
- // TimeZoneSelector,
- Dialog,
- TableHeaderCell
- },
- mixins: [tableColsMixin, timeZoneMixin],
- data() {
- return {
- fullscreenLoading: false,
- queryData: {},
- computedTableHeight: undefined,
- tableCols: [
- {
- prop: 'passengerName',
- label: '旅客姓名',
- desc: '指旅客姓名的拼音大写',
- filterable: true,
- sortable: true
- },
- {
- prop: 'luggageSN',
- label: '行李牌号',
- desc: '指行李的10位数字行李牌号码',
- filterable: true,
- sortable: true
- },
- {
- prop: 'specialType',
- label: '特殊行李类型',
- desc: '指有别于普通托运行李的特殊行李分类,包括(装笼动物、机组行李、易碎行李、VIP行李等),参考BSM报文.E项说明',
- width: 120,
- filterable: true,
- sortable: true
- },
- {
- prop: 'isDEL',
- label: '删除',
- desc: '指旅客是否取消值机托运,根据BSM报文状态是否有DEL判断,已删除的行李记录为斜体灰色字体',
- filterable: true,
- sortable: true
- },
- {
- prop: 'activeState',
- label: '激活',
- desc: '指托运行李是否被激活,参照BSM报文.S项说明',
- filterable: true,
- sortable: true
- },
- {
- prop: 'luggageWeight',
- label: '重量',
- desc: '指托运行李的重量,参照BSM报文.W项说明'
- },
- {
- prop: 'lastStatus',
- label: '最新状态',
- desc: '指托运行李的当前查询时间所在的节点状态',
- filterable: true,
- sortable: true
- },
- {
- prop: 'lastLocation',
- label: '最新位置',
- desc: '指托运行李的当前查询时间所在的节点状态的识读位置代号',
- filterable: true,
- sortable: true
- },
- {
- prop: 'inFlightNO',
- label: '中转进航班',
- desc: '指有中转行李转出的进港航班号',
- width: 110,
- filterable: true,
- sortable: true
- },
- {
- prop: 'transferFlightNO',
- label: '中转出航班',
- desc: '指有中转行李转入的离港航班号',
- width: 110,
- filterable: true,
- sortable: true
- }
- ],
- tableData: [],
- tableDataFilters: {},
- filterValues: {},
- tableDataSortRules: {}
- }
- },
- computed: {
- ...mapGetters(['clickedCells']),
- dealedTableData() {
- const filtered = this.tableData.filter(item => {
- let flag = true
- Object.entries(this.filterValues).forEach(([key, arr]) => {
- if (arr.length && !arr.includes(String(item[key]))) {
- flag = false
- }
- })
- return flag
- })
- const sortRules = Object.entries(this.tableDataSortRules).reduce(
- (pre, [key, value]) => {
- if (value) {
- pre[0].push(key)
- value = value === 'ascending' ? 'asc' : 'desc'
- pre[1].push(value)
- }
- return pre
- },
- [[], []]
- )
- return this._.orderBy(filtered, sortRules[0], sortRules[1])
- }
- },
- watch: {
- $route: {
- handler({ path, query }) {
- if (path.includes('containerView')) {
- const { flightNO, flightDate, departureAirport, landingAirport, containerID } = query
- if (flightNO && flightDate && departureAirport && landingAirport && containerID) {
- const {
- flightNO: oldFlightNO,
- flightDate: oldFlightDate,
- departureAirport: oldDepartureAirport,
- landingAirport: oldLandingAirport,
- containerID: oldContainerID
- } = this.queryData
- if (
- flightNO !== oldFlightNO ||
- flightDate !== oldFlightDate ||
- departureAirport !== oldDepartureAirport ||
- landingAirport !== oldLandingAirport ||
- containerID !== oldContainerID
- ) {
- this.queryData = { flightNO, flightDate, departureAirport, landingAirport, containerID }
- this.queryContainerBaggage([flightNO, flightDate, departureAirport, landingAirport, containerID])
- }
- } else {
- this.$router.push('/')
- }
- }
- },
- deep: true,
- immediate: true
- },
- fullscreenLoading(val) {
- if (val) {
- this.loading = this.$loading({
- lock: true,
- text: '加载中',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- })
- } else {
- this.loading?.close()
- }
- }
- },
- created() {
- Object.values(this.tableCols).forEach(({ prop, filterable, sortable }) => {
- if (filterable) {
- this.$set(this.tableDataFilters, prop, [])
- this.$set(this.filterValues, prop, [])
- }
- if (sortable) {
- this.$set(this.tableDataSortRules, prop, '')
- }
- })
- },
- activated() {
- this.setTableHeight()
- },
- updated() {
- this.setTableHeight()
- },
- deactivated() {
- this.loading?.close()
- },
- beforeDestroy() {
- this.loading?.close()
- },
- methods: {
- setTableHeight() {
- const headerHeight = 80
- const bottomBlankHeight = 16
- const titleHeight = 64
- const basicBoxHeight = this.$refs['basicBox'].offsetHeight
- this.computedTableHeight = `calc(100vh - ${
- headerHeight + bottomBlankHeight + titleHeight * 2 + basicBoxHeight
- }px)`
- this.$nextTick(() => {
- this.$refs['table']?.doLayout()
- })
- },
- rowClass({ row, rowIndex }) {
- const classes = []
- if (row['Status'] === 'DEL') {
- classes.push('bgl-deleted')
- }
- return classes.join(' ')
- },
- // 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
- headerCellClass({ row, column, rowIndex, columnIndex }) {
- const classes = []
- const rule = this.tableDataSortRules[column.property]
- if (rule) {
- classes.push(rule)
- }
- return classes.join(' ')
- },
- cellClass({ row, column, rowIndex, columnIndex }) {
- const classes = []
- if (
- ['checkInTime', 'DealInfo', 'sortLocationMark', 'loadLocationMark', 'inflLocationMark'].includes(
- column.property
- )
- ) {
- classes.push('pre-line')
- }
- if (
- [
- 'passengerName',
- 'luggageSN'
- // 'inFlightNO',
- // 'transferFlightNO'
- ].includes(column.property) &&
- row[column.property]
- ) {
- classes.push('cell-click')
- if (
- this.clickedCells.some(
- cell =>
- cell.pageName === this.$route.name &&
- Object.entries(cell.row).every(([key, value]) => row[key] === value) &&
- cell.columnProp === column.property
- )
- ) {
- classes.push('cell-clicked')
- }
- }
- return classes.join(' ')
- },
- cellClickHandler(row, column, cell, event) {
- if (
- [
- 'passengerName',
- 'luggageSN'
- // 'inFlightNO',
- // 'transferFlightNO'
- ].includes(column.property) &&
- row[column.property]
- ) {
- this.$store.dispatch('keepAlive/addClickedCell', {
- row,
- columnProp: column.property,
- pageName: this.$route.name
- })
- switch (column.property) {
- case 'passengerName':
- this.$message.info('开发中')
- break
- case 'luggageSN':
- this.$router.push({
- path: `${this.$route.path.split('/').slice(0, -1).join('/')}/baggageView`,
- query: {
- bagSN: row.luggageSN,
- flightNO: this.queryData.flightNO,
- flightDate: this.queryData.flightDate
- }
- })
- break
- default:
- break
- }
- }
- },
- toContainerHistory() {
- this.$router.push({
- path: `${this.$route.path.split('/').slice(0, -1).join('/')}/containerHistory`,
- query: {
- containerID: this.queryData.containerID
- }
- })
- },
- // 统计行数
- summaryRow(num) {
- return function () {
- return ['合计', `共${num}件`]
- }
- },
- exportHandler(refName, tableName) {
- const table = this.$refs[refName].$el.cloneNode(true)
- const fileName = `${tableName}-${Object.values(this.queryData).join('-')}.xlsx`
- throttledExportToExcel(table, tableName, fileName)
- },
- async queryContainerBaggage(dataContent) {
- this.fullscreenLoading = true
- this.tableData = []
- try {
- const tableData = await myQuery(DATACONTENT_ID.containerBaggage, ...dataContent)
- this.tableData = tableData
- setTableFilters(this.tableData, this.tableDataFilters)
- } catch {
- this.$message.error('失败')
- }
- this.fullscreenLoading = false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container-view {
- width: 100%;
- height: calc(100vh - 80px - 16px);
- overflow: hidden;
- background: #dfe3ea;
- padding: 0px 8px;
- .title {
- display: flex;
- justify-content: space-between;
- padding: 16px 0;
- margin-right: 0;
- }
- .container-basic {
- .basic-info-box {
- width: 100%;
- background: #041741;
- padding: 16px 30px;
- color: #fff;
- }
- }
- .container-table {
- .title {
- height: 64px;
- .manageTitle {
- flex: 1;
- }
- .el-dropdown {
- height: 30px;
- }
- .btn-square {
- height: 30px;
- margin-left: 20px;
- &:last-child {
- margin-right: 30px;
- }
- }
- }
- .table-wrapper {
- background-color: #fff;
- ::v-deep .el-table {
- width: 100%;
- .cell {
- padding: 0;
- text-align: center;
- font-size: 14px;
- font-family: Helvetica, 'Microsoft YaHei';
- letter-spacing: 0;
- }
- .cell-click {
- cursor: pointer;
- color: #2d7cff;
- &.cell-clicked {
- color: purple;
- }
- }
- .el-table__body-wrapper,
- .el-table__fixed-body-wrapper {
- tr.bgl-deleted {
- background: #d2d6df;
- td {
- background: #d2d6df;
- font-style: italic;
- }
- }
- }
- }
- }
- }
- }
- </style>
|