|
@@ -0,0 +1,283 @@
|
|
|
+<template>
|
|
|
+ <div class="station-view">
|
|
|
+ <div class="station-header">
|
|
|
+ <el-form :model="formData" inline class="station-form">
|
|
|
+ <el-form-item :prop="formData.startDate" style="width: 184px">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="formData.startDate"
|
|
|
+ type="datetime"
|
|
|
+ format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ value-format="YYYY-MM-DD hh:mm:ss"
|
|
|
+ size="default"
|
|
|
+ :clearable="false"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item :prop="formData.endDate" style="width: 184px">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="formData.endDate"
|
|
|
+ type="datetime"
|
|
|
+ format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ value-format="YYYY-MM-DD hh:mm:ss"
|
|
|
+ size="default"
|
|
|
+ :clearable="false"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item :prop="formData.flightStatus" style="width: 104px">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.flightStatus"
|
|
|
+ size="default"
|
|
|
+ placeholder="全部航班"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="option in flightStatusOptions"
|
|
|
+ :key="option.value"
|
|
|
+ :label="option.label"
|
|
|
+ :value="option.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item :prop="formData.flightWarning" style="width: 104px">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.flightWarning"
|
|
|
+ size="default"
|
|
|
+ placeholder="全部航班"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="option in flightWarningOptions"
|
|
|
+ :key="option.value"
|
|
|
+ :label="option.label"
|
|
|
+ :value="option.value"
|
|
|
+ /></el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div class="station-count">
|
|
|
+ <CountBox
|
|
|
+ :count-number="tableDataCount.waybillCount"
|
|
|
+ label="预计装载总运单数"
|
|
|
+ />
|
|
|
+ <CountBox
|
|
|
+ v-if="goodsCountFlag"
|
|
|
+ :count-number="tableDataCount.goodsCount"
|
|
|
+ label="预计装载总件数"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="station-settings">
|
|
|
+ <TableSwitch v-model:flag="goodsCountFlag" label="显示件数" />
|
|
|
+ <TableSwitch v-model:flag="UTCFlag" label="开启UTC" />
|
|
|
+ <ColumnSet
|
|
|
+ :table-columns="tableColumns"
|
|
|
+ @checked-submit="columnChecked"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="station-table">
|
|
|
+ <el-auto-resizer>
|
|
|
+ <template #default="{ height, width }">
|
|
|
+ <el-table-v2
|
|
|
+ :columns="filteredColumns"
|
|
|
+ :data="tableData"
|
|
|
+ :width="width"
|
|
|
+ :height="height"
|
|
|
+ :footer-height="60"
|
|
|
+ :row-class="rowClass"
|
|
|
+ fixed
|
|
|
+ >
|
|
|
+ <template #cell="slot: CellSlotProps">
|
|
|
+ <div :class="cellClass(slot)">
|
|
|
+ <span class="cell-text">{{
|
|
|
+ slot.rowData[slot.column.dataKey]
|
|
|
+ }}</span>
|
|
|
+ <div class="cell-background" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template #footer>
|
|
|
+ <div class="table-footer">
|
|
|
+ <span class="table-footer-count"
|
|
|
+ >航班总数:{{ tableDataCount.flightCount }}</span
|
|
|
+ >
|
|
|
+ <span class="table-footer-count"
|
|
|
+ >货运航班总数:{{ tableDataCount.freightFlightCount }}</span
|
|
|
+ >
|
|
|
+ <span class="table-footer-count"
|
|
|
+ >已装机总数:{{ tableDataCount.loadCount }}</span
|
|
|
+ >
|
|
|
+ <span class="table-footer-count"
|
|
|
+ >已起飞总数:{{ tableDataCount.takeOffCount }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-v2>
|
|
|
+ </template>
|
|
|
+ </el-auto-resizer>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script lang="ts" setup>
|
|
|
+import type { CellSlotProps } from '../../hooks/useTableStyle'
|
|
|
+import ColumnSet from '../../components/ColumnSet/index.vue'
|
|
|
+import CountBox from '../../components/CountBox/index.vue'
|
|
|
+import TableSwitch from '../../components/TableSwitch/index.vue'
|
|
|
+import useTableColumnSet from '../../hooks/useTableColumnSet'
|
|
|
+import useTableData from '../../hooks/useTableData'
|
|
|
+import useTableStyle from '../../hooks/useTableStyle'
|
|
|
+import { parseTime } from '@/utils/validate'
|
|
|
+
|
|
|
+interface selectOptions {
|
|
|
+ label: string
|
|
|
+ value: string | number
|
|
|
+}
|
|
|
+
|
|
|
+const formData = reactive({
|
|
|
+ startDate: parseTime(new Date(), '{y}/{m}/{d} {h}:{i}:{s}'),
|
|
|
+ endDate: parseTime(new Date(), '{y}/{m}/{d} {h}:{i}:{s}'),
|
|
|
+ flightStatus: '',
|
|
|
+ flightWarning: '',
|
|
|
+})
|
|
|
+const flightStatusOptions = ref<selectOptions[]>([])
|
|
|
+const flightWarningOptions = ref<selectOptions[]>([])
|
|
|
+
|
|
|
+const goodsCountFlag = ref(true)
|
|
|
+const UTCFlag = ref(true)
|
|
|
+
|
|
|
+const { tableColumns, tableData } = useTableData()
|
|
|
+const { columnChecked, filteredColumns } = useTableColumnSet(tableColumns)
|
|
|
+
|
|
|
+const tableDataCount = reactive({
|
|
|
+ waybillCount: 0,
|
|
|
+ goodsCount: 0,
|
|
|
+ flightCount: 0,
|
|
|
+ freightFlightCount: 0,
|
|
|
+ loadCount: 0,
|
|
|
+ takeOffCount: 0,
|
|
|
+})
|
|
|
+watch(tableData, records => {
|
|
|
+ tableDataCount.waybillCount = records.length
|
|
|
+ tableDataCount.goodsCount = records.length
|
|
|
+ tableDataCount.flightCount = records.length
|
|
|
+ tableDataCount.freightFlightCount = records.length
|
|
|
+ tableDataCount.loadCount = records.length
|
|
|
+ tableDataCount.takeOffCount = records.length
|
|
|
+})
|
|
|
+
|
|
|
+const { rowClass, cellClass } = useTableStyle()
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.station-view {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ .station-header {
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ :deep .station-form {
|
|
|
+ margin-right: 43px;
|
|
|
+ .el-form-item {
|
|
|
+ margin: 0;
|
|
|
+ &:not(:last-of-type) {
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .station-count {
|
|
|
+ margin-right: 24px;
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .station-settings {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ .station-switch {
|
|
|
+ margin-right: 28px;
|
|
|
+ &:nth-child(2) {
|
|
|
+ margin-right: 24px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .station-table {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 32px - 16px);
|
|
|
+ :deep .el-table-v2 {
|
|
|
+ .el-table-v2__header-cell,
|
|
|
+ .el-table-v2__row-cell {
|
|
|
+ &:not(:last-child) {
|
|
|
+ border-right: 1px solid #dfe3ea;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table-v2__header-cell-text,
|
|
|
+ .el-table-v2__cell-text {
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Helvetica, Microsoft YaHei;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #101116;
|
|
|
+ white-space: pre-line;
|
|
|
+ }
|
|
|
+ .el-table-v2__header {
|
|
|
+ .el-table-v2__header-cell {
|
|
|
+ &.bg-yellow {
|
|
|
+ background-color: #f9f3cb;
|
|
|
+ }
|
|
|
+ &.bg-green {
|
|
|
+ background-color: #ace5d3;
|
|
|
+ }
|
|
|
+ &.bg-cyan {
|
|
|
+ background-color: #b7d5e8;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table-v2__body {
|
|
|
+ .el-table-v2__row {
|
|
|
+ &.bg-gray {
|
|
|
+ background-color: #d2d6df;
|
|
|
+ }
|
|
|
+ &.underline-red {
|
|
|
+ border-bottom: 2px solid #e83f82;
|
|
|
+ }
|
|
|
+ .el-table-v2__row-cell {
|
|
|
+ position: relative;
|
|
|
+ .el-table-v2__cell-text {
|
|
|
+ .cell-text {
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+ .cell-background {
|
|
|
+ content: '';
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ z-index: 0;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+ &.cell-warning .cell-background {
|
|
|
+ background-color: #f6cda5;
|
|
|
+ }
|
|
|
+ &.cell-error .cell-background {
|
|
|
+ background-color: #f38080;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table-footer {
|
|
|
+ padding-left: 8px;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ background-color: #dfe3ea;
|
|
|
+ &-count {
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: Helvetica, Microsoft YaHei;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #303133;
|
|
|
+ &:not(:last-of-type) {
|
|
|
+ margin-right: 48px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|