|
@@ -0,0 +1,244 @@
|
|
|
+<template>
|
|
|
+ <a-card :bordered="false">
|
|
|
+
|
|
|
+ <!-- 查询区域 -->
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
+ <a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
+ <a-form-item label="日期">
|
|
|
+ <a-date-picker placeholder="请选择日期" @change="dateTimeChange" v-model:value="defaultPickerValue" :defaultPickerValue="defaultPickerValue" format="YYYY-MM-DD" valueFormat="YYYY-MM-DD" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
+ <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
+ <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
+ </span>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- table区域-begin -->
|
|
|
+ <div>
|
|
|
+ <a-table
|
|
|
+ ref="table"
|
|
|
+ size="middle"
|
|
|
+ bordered
|
|
|
+ rowKey="id"
|
|
|
+ :columns="columns"
|
|
|
+ :dataSource="dataSource"
|
|
|
+ :pagination="ipagination"
|
|
|
+ :loading="loading"
|
|
|
+ class="j-table-force-nowrap"
|
|
|
+ @change="handleTableChange">
|
|
|
+ </a-table>
|
|
|
+ </div>
|
|
|
+ <!-- table区域-end -->
|
|
|
+
|
|
|
+ <!-- 表单区域 -->
|
|
|
+
|
|
|
+ </a-card>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import '@/assets/less/TableExpand.less'
|
|
|
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
+import moment, { Moment } from 'moment';
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'AdminDfdlListList',
|
|
|
+ mixins: [JeecgListMixin],
|
|
|
+ components: {
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ description: '计划列表管理页面',
|
|
|
+ defaultPickerValue: moment(),
|
|
|
+ queryParam: {
|
|
|
+ dateTime: moment().format('YYYY-MM-DD')
|
|
|
+ },
|
|
|
+ // 表头
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ title: '#',
|
|
|
+ dataIndex: '',
|
|
|
+ key: 'rowIndex',
|
|
|
+ width: 60,
|
|
|
+ align: 'center',
|
|
|
+ customRender: function(t, r, index) {
|
|
|
+ return parseInt(index) + 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /*{
|
|
|
+ title: '航班唯一id',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'flid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '关联航班唯一id',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'afid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班唯一编号',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'ffid'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航空公司二字码',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'awcd'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班号',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'flno'
|
|
|
+ },*/
|
|
|
+ {
|
|
|
+ title: '飞机号',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'cfno'
|
|
|
+ },
|
|
|
+ /*{
|
|
|
+ title: '航班执行日期;进港航班的计划降落时间里面的日期,出港航班的计划起飞时间里面的日期',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fexd'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班进出标志;A-进港;D-出港',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'flio'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班任务;W/Z(正班)',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fltk'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班属性;2403 国内,2401 国际,2404 混合,2402 地区
|
|
|
+ ',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fatt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '对应机位表admin_aircraft_position.aircraft_position_num',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'positionCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '预计开始使用时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'estr'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '预计结束使用时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'eend'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '实际开始使用时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'rstr'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '实际结束使用时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'rend'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '是否到达(业务自定义);0:未到达,1:到达',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'arrival'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '实际到达时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'frlt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '是否本站起飞;0:未起飞,1:起飞',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'depe'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '实际起飞时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'frtt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '预计起飞时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fett'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '预计到达时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'felt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '计划起飞时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fptt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '计划降落时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'fplt'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '是否删除(业务自定义):0:未删除,1:删除',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'del'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班延误标志位,0:正常,1:延误',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'dlye'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班返航标志位,0:正常,1:返航',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'rtne'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班取消标志位,0:正常,1:取消',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'cane'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '航班滑回标志位,0:正常,1:滑回',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'bake'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ dataIndex: 'action',
|
|
|
+ align: 'center',
|
|
|
+ scopedSlots: { customRender: 'action' }
|
|
|
+ }*/
|
|
|
+ ],
|
|
|
+ url: {
|
|
|
+ list: '/admin_dfdl_list/adminDfdlList/queryNotTestAirbridgeList',
|
|
|
+/* delete: '/admin_dfdl_list/adminDfdlList/delete',
|
|
|
+ deleteBatch: '/admin_dfdl_list/adminDfdlList/deleteBatch',
|
|
|
+ exportXlsUrl: 'admin_dfdl_list/adminDfdlList/exportXls',
|
|
|
+ importExcelUrl: 'admin_dfdl_list/adminDfdlList/importExcel'*/
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ importExcelUrl: function() {
|
|
|
+ return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ dateTimeChange(date,dateString) {
|
|
|
+ this.queryParam.dateTime = dateString;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+@import '~@assets/less/common.less';
|
|
|
+</style>
|