|
@@ -25,11 +25,30 @@
|
|
@change="endDateChangeHandler"
|
|
@change="endDateChangeHandler"
|
|
/>
|
|
/>
|
|
</div> -->
|
|
</div> -->
|
|
- <el-date-picker v-model="flightDate" size="small" type="daterange" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="dateRangePickerOptions" />
|
|
|
|
|
|
+ <el-date-picker
|
|
|
|
+ v-model="flightDate"
|
|
|
|
+ size="small"
|
|
|
|
+ type="daterange"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ start-placeholder="开始日期"
|
|
|
|
+ end-placeholder="结束日期"
|
|
|
|
+ :picker-options="dateRangePickerOptions"
|
|
|
|
+ />
|
|
</div>
|
|
</div>
|
|
- <Search ref="search" class="advanced-search" :is-title="false" :is-slot="true" :search-tooltip="'请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)'" @getSearchData="getSearchData" @clearSearchData="clearSearchData">
|
|
|
|
|
|
+ <Search
|
|
|
|
+ ref="search"
|
|
|
|
+ class="advanced-search"
|
|
|
|
+ :is-title="false"
|
|
|
|
+ :is-slot="true"
|
|
|
|
+ :search-tooltip="'请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)'"
|
|
|
|
+ @getSearchData="getSearchData"
|
|
|
|
+ @clearSearchData="clearSearchData"
|
|
|
|
+ >
|
|
<div class="flex-wrap">
|
|
<div class="flex-wrap">
|
|
- <button class="btnAn" @click="dialogShow">高级查询</button>
|
|
|
|
|
|
+ <button
|
|
|
|
+ class="btnAn"
|
|
|
|
+ @click="dialogShow"
|
|
|
|
+ >高级查询</button>
|
|
<!-- <div
|
|
<!-- <div
|
|
class="setting"
|
|
class="setting"
|
|
@click="show"
|
|
@click="show"
|
|
@@ -38,11 +57,48 @@
|
|
</Search>
|
|
</Search>
|
|
</div>
|
|
</div>
|
|
<!--表格-->
|
|
<!--表格-->
|
|
- <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="advance__table">
|
|
|
|
- <el-table ref="table" max-height="100%" class="table" :data="dealedTableData" border stripe fit height="calc(100vh - 158px)" style="width: 100%" show-summary :summary-method="summaryRow(tableData.length)" :header-cell-class-name="headerCellClass" :row-class-name="tableRowClassName" :cell-class-name="cellClass" :span-method="objectSpanMethod" @cell-click="cellClickHandler">
|
|
|
|
- <el-table-column v-for="col in tableCols" :key="col.prop" :prop="col.prop" :label="col.label" :width="col.width" :fixed="col.fixed">
|
|
|
|
|
|
+ <div
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
|
+ class="advance__table"
|
|
|
|
+ >
|
|
|
|
+ <el-table
|
|
|
|
+ ref="table"
|
|
|
|
+ max-height="100%"
|
|
|
|
+ class="table"
|
|
|
|
+ :data="dealedTableData"
|
|
|
|
+ border
|
|
|
|
+ stripe
|
|
|
|
+ fit
|
|
|
|
+ height="calc(100vh - 158px)"
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ show-summary
|
|
|
|
+ :summary-method="summaryRow(tableData.length)"
|
|
|
|
+ :header-cell-class-name="headerCellClass"
|
|
|
|
+ :row-class-name="tableRowClassName"
|
|
|
|
+ :cell-class-name="cellClass"
|
|
|
|
+ :span-method="objectSpanMethod"
|
|
|
|
+ :formatter="tableFormat"
|
|
|
|
+ @cell-click="cellClickHandler"
|
|
|
|
+ >
|
|
|
|
+ <el-table-column
|
|
|
|
+ v-for="col in tableCols"
|
|
|
|
+ :key="col.prop"
|
|
|
|
+ :prop="col.prop"
|
|
|
|
+ :label="col.label"
|
|
|
|
+ :width="col.width"
|
|
|
|
+ :fixed="col.fixed"
|
|
|
|
+ >
|
|
<template #header>
|
|
<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]" />
|
|
|
|
|
|
+ <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>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -84,61 +140,183 @@
|
|
</div>
|
|
</div>
|
|
</Dialog> -->
|
|
</Dialog> -->
|
|
<!--高级查询-->
|
|
<!--高级查询-->
|
|
- <Dialog width="852px" :flag="gjFlag">
|
|
|
|
- <div ref="dialog" class="rowDialog" :tabindex="0" @keyup.enter="onCheckGj(true)" @keyup.self.esc="gjFlag=false">
|
|
|
|
|
|
+ <Dialog
|
|
|
|
+ width="852px"
|
|
|
|
+ :flag="gjFlag"
|
|
|
|
+ >
|
|
|
|
+ <div
|
|
|
|
+ ref="dialog"
|
|
|
|
+ class="rowDialog"
|
|
|
|
+ :tabindex="0"
|
|
|
|
+ @keyup.enter="onCheckGj(true)"
|
|
|
|
+ @keyup.self.esc="gjFlag=false"
|
|
|
|
+ >
|
|
<div class="title">高级查询</div>
|
|
<div class="title">高级查询</div>
|
|
<div class="content">
|
|
<div class="content">
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
|
+ <el-form
|
|
|
|
+ ref="form"
|
|
|
|
+ :model="form"
|
|
|
|
+ :rules="rules"
|
|
|
|
+ label-width="100px"
|
|
|
|
+ >
|
|
<el-row :gutter="20">
|
|
<el-row :gutter="20">
|
|
- <el-col v-for="item in formItems" :key="item.prop" :span="item.span || 8">
|
|
|
|
- <el-form-item :label="item.label" :prop="item.prop">
|
|
|
|
|
|
+ <el-col
|
|
|
|
+ v-for="item in formItems"
|
|
|
|
+ :key="item.prop"
|
|
|
|
+ :span="item.span || 8"
|
|
|
|
+ >
|
|
|
|
+ <el-form-item
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :prop="item.prop"
|
|
|
|
+ >
|
|
<template v-if="item.prop === 'flightDate'">
|
|
<template v-if="item.prop === 'flightDate'">
|
|
- <el-date-picker v-model="flightDate" size="small" type="daterange" value-format="yyyy-MM-dd" start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="dateRangePickerOptions" @keyup.esc.native="dialogFocus" />
|
|
|
|
|
|
+ <el-date-picker
|
|
|
|
+ v-model="flightDate"
|
|
|
|
+ size="small"
|
|
|
|
+ type="daterange"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ start-placeholder="开始日期"
|
|
|
|
+ end-placeholder="结束日期"
|
|
|
|
+ :picker-options="dateRangePickerOptions"
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ />
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'status'">
|
|
<template v-else-if="item.prop === 'status'">
|
|
- <el-select v-model="form.status" size="small" filterable default-first-option clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option v-for="option in statusList" :key="option.ID" :label="option.StatusName" :value="option.StatusCode" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.status"
|
|
|
|
+ size="small"
|
|
|
|
+ filterable
|
|
|
|
+ default-first-option
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="option in statusList"
|
|
|
|
+ :key="option.ID"
|
|
|
|
+ :label="option.StatusName"
|
|
|
|
+ :value="option.StatusCode"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'specialType'">
|
|
<template v-else-if="item.prop === 'specialType'">
|
|
- <el-select v-model="form.specialType" size="small" filterable allow-create default-first-option clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option v-for="option in baggageTypeList" :key="option.specialType" :label="option.specialType" :value="option.specialType" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.specialType"
|
|
|
|
+ size="small"
|
|
|
|
+ filterable
|
|
|
|
+ allow-create
|
|
|
|
+ default-first-option
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="option in baggageTypeList"
|
|
|
|
+ :key="option.specialType"
|
|
|
|
+ :label="option.specialType"
|
|
|
|
+ :value="option.specialType"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'unLoad'">
|
|
<template v-else-if="item.prop === 'unLoad'">
|
|
- <el-select v-model="form.unLoad" size="small" clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option label="已翻减" :value="1" />
|
|
|
|
- <el-option label="待翻减" :value="0" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.unLoad"
|
|
|
|
+ size="small"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ label="已翻减"
|
|
|
|
+ :value="1"
|
|
|
|
+ />
|
|
|
|
+ <el-option
|
|
|
|
+ label="待翻减"
|
|
|
|
+ :value="0"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'checkIn'">
|
|
<template v-else-if="item.prop === 'checkIn'">
|
|
- <el-select v-model="form.checkIn" size="small" clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option label="是" :value="1" />
|
|
|
|
- <el-option label="否" :value="0" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.checkIn"
|
|
|
|
+ size="small"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ label="是"
|
|
|
|
+ :value="1"
|
|
|
|
+ />
|
|
|
|
+ <el-option
|
|
|
|
+ label="否"
|
|
|
|
+ :value="0"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'active'">
|
|
<template v-else-if="item.prop === 'active'">
|
|
- <el-select v-model="form.active" size="small" clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option label="是" :value="1" />
|
|
|
|
- <el-option label="否" :value="0" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.active"
|
|
|
|
+ size="small"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ label="是"
|
|
|
|
+ :value="1"
|
|
|
|
+ />
|
|
|
|
+ <el-option
|
|
|
|
+ label="否"
|
|
|
|
+ :value="0"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'transferIn'">
|
|
<template v-else-if="item.prop === 'transferIn'">
|
|
- <el-select v-model="form.transferIn" size="small" clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option label="是" :value="1" />
|
|
|
|
- <el-option label="否" :value="0" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.transferIn"
|
|
|
|
+ size="small"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ label="是"
|
|
|
|
+ :value="1"
|
|
|
|
+ />
|
|
|
|
+ <el-option
|
|
|
|
+ label="否"
|
|
|
|
+ :value="0"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else-if="item.prop === 'canceled'">
|
|
<template v-else-if="item.prop === 'canceled'">
|
|
- <el-select v-model="form.canceled" size="small" clearable @keyup.esc.native="dialogFocus">
|
|
|
|
- <el-option label="是" :value="1" />
|
|
|
|
- <el-option label="否" :value="0" />
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.canceled"
|
|
|
|
+ size="small"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ label="是"
|
|
|
|
+ :value="1"
|
|
|
|
+ />
|
|
|
|
+ <el-option
|
|
|
|
+ label="否"
|
|
|
|
+ :value="0"
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</template>
|
|
</template>
|
|
<template v-else>
|
|
<template v-else>
|
|
- <el-popover v-model="item.hintVisible" placement="right" trigger="manual">
|
|
|
|
|
|
+ <el-popover
|
|
|
|
+ v-model="item.hintVisible"
|
|
|
|
+ placement="right"
|
|
|
|
+ trigger="manual"
|
|
|
|
+ >
|
|
<span>{{ item.hintText }}</span>
|
|
<span>{{ item.hintText }}</span>
|
|
- <el-input :ref="'input-' + item.prop" slot="reference" v-model="form[item.prop]" size="small" @focus="item.hintVisible = true" @blur="item.hintVisible = false" @keyup.esc.native="dialogFocus" />
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ :ref="'input-' + item.prop"
|
|
|
|
+ slot="reference"
|
|
|
|
+ v-model="form[item.prop]"
|
|
|
|
+ size="small"
|
|
|
|
+ @focus="item.hintVisible = true"
|
|
|
|
+ @blur="item.hintVisible = false"
|
|
|
|
+ @keyup.esc.native="dialogFocus"
|
|
|
|
+ />
|
|
</el-popover>
|
|
</el-popover>
|
|
</template>
|
|
</template>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -147,8 +325,16 @@
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
<div class="foot right t30">
|
|
<div class="foot right t30">
|
|
- <el-button size="medium" class="r24" type="primary" @click="onCheckGj(true)">确定</el-button>
|
|
|
|
- <el-button size="medium" @click="closeCheckGj">取消</el-button>
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ size="medium"
|
|
|
|
+ class="r24"
|
|
|
|
+ type="primary"
|
|
|
|
+ @click="onCheckGj(true)"
|
|
|
|
+ >确定</el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="medium"
|
|
|
|
+ @click="closeCheckGj"
|
|
|
|
+ >取消</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Dialog>
|
|
@@ -159,7 +345,7 @@
|
|
import Search from '@/components/SearchWithTooltip'
|
|
import Search from '@/components/SearchWithTooltip'
|
|
import Dialog from '@/layout/components/Dialog'
|
|
import Dialog from '@/layout/components/Dialog'
|
|
import { parseTime } from '@/utils/index'
|
|
import { parseTime } from '@/utils/index'
|
|
-import { queryMap, myQuery } from '@/api/dataIntegration'
|
|
|
|
|
|
+import { myQuery } from '@/api/dataIntegration'
|
|
import { mapGetters } from 'vuex'
|
|
import { mapGetters } from 'vuex'
|
|
import TableHeaderCell from '@/components/TableHeaderCell'
|
|
import TableHeaderCell from '@/components/TableHeaderCell'
|
|
import { setTableFilters } from '@/utils/table'
|
|
import { setTableFilters } from '@/utils/table'
|
|
@@ -167,7 +353,7 @@ import { setTableFilters } from '@/utils/table'
|
|
export default {
|
|
export default {
|
|
name: 'Advance',
|
|
name: 'Advance',
|
|
components: { Search, Dialog, TableHeaderCell },
|
|
components: { Search, Dialog, TableHeaderCell },
|
|
- data () {
|
|
|
|
|
|
+ data() {
|
|
return {
|
|
return {
|
|
loading: false,
|
|
loading: false,
|
|
colDialogFlag: false,
|
|
colDialogFlag: false,
|
|
@@ -460,7 +646,7 @@ export default {
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
...mapGetters(['clickedCells', 'queryForm']),
|
|
...mapGetters(['clickedCells', 'queryForm']),
|
|
- dealedTableData () {
|
|
|
|
|
|
+ dealedTableData() {
|
|
const filtered = this.tableData.filter(item => {
|
|
const filtered = this.tableData.filter(item => {
|
|
let flag = true
|
|
let flag = true
|
|
Object.entries(this.filterValues).forEach(([key, arr]) => {
|
|
Object.entries(this.filterValues).forEach(([key, arr]) => {
|
|
@@ -486,7 +672,7 @@ export default {
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
flightDate: {
|
|
flightDate: {
|
|
- handler (val) {
|
|
|
|
|
|
+ handler(val) {
|
|
if (val === null) {
|
|
if (val === null) {
|
|
this.flightDate = ['', '']
|
|
this.flightDate = ['', '']
|
|
}
|
|
}
|
|
@@ -494,7 +680,7 @@ export default {
|
|
deep: true
|
|
deep: true
|
|
},
|
|
},
|
|
dealedTableData: {
|
|
dealedTableData: {
|
|
- handler (val) {
|
|
|
|
|
|
+ handler(val) {
|
|
this.spanArr = []
|
|
this.spanArr = []
|
|
let contactDot = this.contactDot
|
|
let contactDot = this.contactDot
|
|
val.forEach((item, index, arr) => {
|
|
val.forEach((item, index, arr) => {
|
|
@@ -520,7 +706,7 @@ export default {
|
|
deep: true
|
|
deep: true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- created () {
|
|
|
|
|
|
+ created() {
|
|
Object.values(this.tableCols).forEach(({ prop, filterable, sortable }) => {
|
|
Object.values(this.tableCols).forEach(({ prop, filterable, sortable }) => {
|
|
if (filterable) {
|
|
if (filterable) {
|
|
this.$set(this.tableDataFilters, prop, [])
|
|
this.$set(this.tableDataFilters, prop, [])
|
|
@@ -538,7 +724,7 @@ export default {
|
|
// }
|
|
// }
|
|
// this.statItemsQueryByStatMain(dataContent);
|
|
// this.statItemsQueryByStatMain(dataContent);
|
|
},
|
|
},
|
|
- mounted () {
|
|
|
|
|
|
+ mounted() {
|
|
// window.addEventListener('keyup', () => {
|
|
// window.addEventListener('keyup', () => {
|
|
// console.dir(document.activeElement)
|
|
// console.dir(document.activeElement)
|
|
// })
|
|
// })
|
|
@@ -569,13 +755,13 @@ export default {
|
|
this.onCheckGj()
|
|
this.onCheckGj()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- updated () {
|
|
|
|
|
|
+ updated() {
|
|
// table数据更新
|
|
// table数据更新
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.$refs.table.doLayout()
|
|
this.$refs.table.doLayout()
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- beforeDestroy () {
|
|
|
|
|
|
+ beforeDestroy() {
|
|
// console.log(this.$route.matched.filter(item => item.name && item.meta.title))
|
|
// console.log(this.$route.matched.filter(item => item.name && item.meta.title))
|
|
if (this.$route.matched.filter(item => item.name && item.meta.title).length > 1) {
|
|
if (this.$route.matched.filter(item => item.name && item.meta.title).length > 1) {
|
|
this.$store.dispatch('app/setQueryForm', {
|
|
this.$store.dispatch('app/setQueryForm', {
|
|
@@ -587,13 +773,13 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- dialogShow () {
|
|
|
|
|
|
+ dialogShow() {
|
|
this.gjFlag = true
|
|
this.gjFlag = true
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.dialogFocus()
|
|
this.dialogFocus()
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- dialogFocus () {
|
|
|
|
|
|
+ dialogFocus() {
|
|
this.$refs['dialog'].focus()
|
|
this.$refs['dialog'].focus()
|
|
},
|
|
},
|
|
// startDateChangeHandler(val) {
|
|
// startDateChangeHandler(val) {
|
|
@@ -626,17 +812,17 @@ export default {
|
|
// this.$message.info('时间跨度不能超过三天,请重新选择')
|
|
// this.$message.info('时间跨度不能超过三天,请重新选择')
|
|
// }
|
|
// }
|
|
// },
|
|
// },
|
|
- dateRangePickHandler ({ maxDate, minDate }) {
|
|
|
|
|
|
+ dateRangePickHandler({ maxDate, minDate }) {
|
|
if (!maxDate) {
|
|
if (!maxDate) {
|
|
this.pickedDate = minDate
|
|
this.pickedDate = minDate
|
|
} else {
|
|
} else {
|
|
this.pickedDate = null
|
|
this.pickedDate = null
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- dateRangeDisabled (date) {
|
|
|
|
|
|
+ dateRangeDisabled(date) {
|
|
return this.pickedDate ? Math.abs(date - this.pickedDate) > 2 * 24 * 60 * 60 * 1000 : false
|
|
return this.pickedDate ? Math.abs(date - this.pickedDate) > 2 * 24 * 60 * 60 * 1000 : false
|
|
},
|
|
},
|
|
- objectSpanMethod ({ row, column, rowIndex, columnIndex }) {
|
|
|
|
|
|
+ objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
if (['passengerNameUpcase', 'bagWeight'].includes(column.property)) {
|
|
if (['passengerNameUpcase', 'bagWeight'].includes(column.property)) {
|
|
const _row = this.spanArr[rowIndex]
|
|
const _row = this.spanArr[rowIndex]
|
|
const _col = _row > 0 ? 1 : 0
|
|
const _col = _row > 0 ? 1 : 0
|
|
@@ -647,7 +833,7 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
|
|
// 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
|
|
- headerCellClass ({ row, column, rowIndex, columnIndex }) {
|
|
|
|
|
|
+ headerCellClass({ row, column, rowIndex, columnIndex }) {
|
|
const classes = []
|
|
const classes = []
|
|
const rule = this.tableDataSortRules[column.property]
|
|
const rule = this.tableDataSortRules[column.property]
|
|
if (rule) {
|
|
if (rule) {
|
|
@@ -655,16 +841,16 @@ export default {
|
|
}
|
|
}
|
|
return classes.join(' ')
|
|
return classes.join(' ')
|
|
},
|
|
},
|
|
- tableRowClassName ({ row, rowIndex }) {
|
|
|
|
|
|
+ tableRowClassName({ row, rowIndex }) {
|
|
const classes = []
|
|
const classes = []
|
|
if (row.deleted === 'DEL') {
|
|
if (row.deleted === 'DEL') {
|
|
classes.push('bgl-deleted')
|
|
classes.push('bgl-deleted')
|
|
}
|
|
}
|
|
return classes.join(' ')
|
|
return classes.join(' ')
|
|
},
|
|
},
|
|
- cellClass ({ row, column, rowIndex, columnIndex }) {
|
|
|
|
|
|
+ cellClass({ row, column, rowIndex, columnIndex }) {
|
|
const classes = []
|
|
const classes = []
|
|
- if (['flightNO', 'transferFlightNO', 'bagSN'].includes(column.property)) {
|
|
|
|
|
|
+ if (['flightNO', 'bagSN', 'preFlightNO', 'transferFlightNO'].includes(column.property) && row[column.property]) {
|
|
classes.push('cell-click')
|
|
classes.push('cell-click')
|
|
if (
|
|
if (
|
|
this.clickedCells.some(
|
|
this.clickedCells.some(
|
|
@@ -679,8 +865,8 @@ export default {
|
|
}
|
|
}
|
|
return classes.join(' ')
|
|
return classes.join(' ')
|
|
},
|
|
},
|
|
- cellClickHandler (row, column, cell, event) {
|
|
|
|
- if (['flightNO', 'transferFlightNO', 'bagSN'].includes(column.property)) {
|
|
|
|
|
|
+ cellClickHandler(row, column, cell, event) {
|
|
|
|
+ if (['flightNO', 'bagSN', 'preFlightNO', 'transferFlightNO'].includes(column.property)) {
|
|
this.$store.dispatch('keepAlive/addClickedCell', {
|
|
this.$store.dispatch('keepAlive/addClickedCell', {
|
|
row,
|
|
row,
|
|
columnProp: column.property,
|
|
columnProp: column.property,
|
|
@@ -697,22 +883,31 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
break
|
|
break
|
|
|
|
+ case 'bagSN':
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/advance/baggageView',
|
|
|
|
+ query: {
|
|
|
|
+ flightNO: row.flightNO,
|
|
|
|
+ flightDate: row.flightDate,
|
|
|
|
+ bagSN: row.bagSN
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ break
|
|
case 'transferFlightNO':
|
|
case 'transferFlightNO':
|
|
this.$router.push({
|
|
this.$router.push({
|
|
path: '/advance/flightView',
|
|
path: '/advance/flightView',
|
|
query: {
|
|
query: {
|
|
flightNO: row.transferFlightNO,
|
|
flightNO: row.transferFlightNO,
|
|
- flightDate: row.flightDate
|
|
|
|
|
|
+ flightDate: row.transferFlightDate
|
|
}
|
|
}
|
|
})
|
|
})
|
|
break
|
|
break
|
|
- case 'bagSN':
|
|
|
|
|
|
+ case 'preFlightNO':
|
|
this.$router.push({
|
|
this.$router.push({
|
|
- path: '/advance/baggageView',
|
|
|
|
|
|
+ path: '/advance/flightView',
|
|
query: {
|
|
query: {
|
|
- flightNO: row.flightNO,
|
|
|
|
- flightDate: row.flightDate,
|
|
|
|
- bagSN: row.bagSN
|
|
|
|
|
|
+ flightNO: row.preFlightNO,
|
|
|
|
+ flightDate: row.preFlightDate
|
|
}
|
|
}
|
|
})
|
|
})
|
|
break
|
|
break
|
|
@@ -720,8 +915,20 @@ export default {
|
|
break
|
|
break
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ tableFormat(row, column, cellValue) {
|
|
|
|
+ switch (column.property) {
|
|
|
|
+ case 'departureTime':
|
|
|
|
+ return cellValue.replace('T', ' ')
|
|
|
|
+ case 'deleted':
|
|
|
|
+ return cellValue === 'DEL' ? cellValue : ''
|
|
|
|
+ case 'activated':
|
|
|
|
+ return cellValue === 'I' ? '未激活' : '激活'
|
|
|
|
+ default:
|
|
|
|
+ return cellValue ?? ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
// 查询
|
|
// 查询
|
|
- getSearchData (val) {
|
|
|
|
|
|
+ getSearchData(val) {
|
|
this.clearForm()
|
|
this.clearForm()
|
|
if (this.flightDate[0] === '' || this.flightDate[1] === '' || val === '') {
|
|
if (this.flightDate[0] === '' || this.flightDate[1] === '' || val === '') {
|
|
this.$message.error('请先输入完整查询信息')
|
|
this.$message.error('请先输入完整查询信息')
|
|
@@ -755,18 +962,18 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 清除查询
|
|
// 清除查询
|
|
- clearSearchData () {
|
|
|
|
|
|
+ clearSearchData() {
|
|
this.clearForm()
|
|
this.clearForm()
|
|
this.tableData = []
|
|
this.tableData = []
|
|
},
|
|
},
|
|
// 清除表单
|
|
// 清除表单
|
|
- clearForm () {
|
|
|
|
|
|
+ clearForm() {
|
|
Object.keys(this.form).forEach(key => {
|
|
Object.keys(this.form).forEach(key => {
|
|
this.form[key] = ''
|
|
this.form[key] = ''
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 高级查询-确定
|
|
// 高级查询-确定
|
|
- onCheckGj (singleJump) {
|
|
|
|
|
|
+ onCheckGj(singleJump) {
|
|
/* 参数顺序
|
|
/* 参数顺序
|
|
【航班开始日期,航班结束日期,航班号,航班号,行李牌号,行李牌号,起飞站,起飞站,目的站,目的站,特殊行李类型,特殊行李类型,旅客姓名大写拼音,旅客姓名大写拼音,
|
|
【航班开始日期,航班结束日期,航班号,航班号,行李牌号,行李牌号,起飞站,起飞站,目的站,目的站,特殊行李类型,特殊行李类型,旅客姓名大写拼音,旅客姓名大写拼音,
|
|
PNR,PNR,值机号,值机号,中转进航班,中转进航班,中转出航班,中转出航班,容器编号,容器编号,
|
|
PNR,PNR,值机号,值机号,中转进航班,中转进航班,中转出航班,中转出航班,容器编号,容器编号,
|
|
@@ -825,10 +1032,10 @@ export default {
|
|
this.$message.error('请先选择要查询的时间')
|
|
this.$message.error('请先选择要查询的时间')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- closeCheckGj () {
|
|
|
|
|
|
+ closeCheckGj() {
|
|
this.gjFlag = false
|
|
this.gjFlag = false
|
|
},
|
|
},
|
|
- setDataContent (...dataContent) {
|
|
|
|
|
|
+ setDataContent(...dataContent) {
|
|
dataContent.forEach(target => {
|
|
dataContent.forEach(target => {
|
|
target = typeof target === 'string' ? target.trim() : target
|
|
target = typeof target === 'string' ? target.trim() : target
|
|
if ((target ?? '') !== '') {
|
|
if ((target ?? '') !== '') {
|
|
@@ -839,7 +1046,7 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 数据查询
|
|
// 数据查询
|
|
- async statItemsQueryByStatMain (dataContent, singleJump) {
|
|
|
|
|
|
+ async statItemsQueryByStatMain(dataContent, singleJump) {
|
|
this.loading = true
|
|
this.loading = true
|
|
this.tableData = []
|
|
this.tableData = []
|
|
try {
|
|
try {
|
|
@@ -881,11 +1088,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
const tableData = this._.sortBy(result, ['flightDate', 'departureTime', 'passengerNameUpcase', 'bagSN'])
|
|
const tableData = this._.sortBy(result, ['flightDate', 'departureTime', 'passengerNameUpcase', 'bagSN'])
|
|
- this.tableData = tableData.map((item, index, arr) => {
|
|
|
|
- item['deleted'] === 'DEL' || (item['deleted'] = '')
|
|
|
|
- item['activated'] = item['activated'] === 'I' ? '未激活' : '激活'
|
|
|
|
- return item
|
|
|
|
- })
|
|
|
|
|
|
+ this.tableData = tableData
|
|
setTableFilters(this.tableData, this.tableDataFilters)
|
|
setTableFilters(this.tableData, this.tableDataFilters)
|
|
} else {
|
|
} else {
|
|
this.$message.info('未查询到匹配结果')
|
|
this.$message.info('未查询到匹配结果')
|
|
@@ -896,7 +1099,7 @@ export default {
|
|
this.loading = false
|
|
this.loading = false
|
|
},
|
|
},
|
|
// 特殊行李类型下拉选项查询
|
|
// 特殊行李类型下拉选项查询
|
|
- async baggageTypeQuery () {
|
|
|
|
|
|
+ async baggageTypeQuery() {
|
|
try {
|
|
try {
|
|
const result = await myQuery(DATACONTENT_ID.baggageTypeId)
|
|
const result = await myQuery(DATACONTENT_ID.baggageTypeId)
|
|
this.baggageTypeList = result
|
|
this.baggageTypeList = result
|
|
@@ -921,7 +1124,7 @@ export default {
|
|
// }
|
|
// }
|
|
// },
|
|
// },
|
|
// 统计行数
|
|
// 统计行数
|
|
- summaryRow (num) {
|
|
|
|
|
|
+ summaryRow(num) {
|
|
return function () {
|
|
return function () {
|
|
return ['合计', `共${num}件`]
|
|
return ['合计', `共${num}件`]
|
|
}
|
|
}
|
|
@@ -942,7 +1145,7 @@ export default {
|
|
width: 32px;
|
|
width: 32px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
- background: url("../../../assets/baggage/ic_setting.png") no-repeat;
|
|
|
|
|
|
+ background: url('../../../assets/baggage/ic_setting.png') no-repeat;
|
|
margin-left: 12px;
|
|
margin-left: 12px;
|
|
position: relative;
|
|
position: relative;
|
|
top: 2px;
|
|
top: 2px;
|
|
@@ -969,7 +1172,7 @@ export default {
|
|
padding: 0;
|
|
padding: 0;
|
|
text-align: center;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
- font-family: Helvetica, "Microsoft YaHei";
|
|
|
|
|
|
+ font-family: Helvetica, 'Microsoft YaHei';
|
|
letter-spacing: 0;
|
|
letter-spacing: 0;
|
|
}
|
|
}
|
|
.cell-click {
|
|
.cell-click {
|