index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <div class="station-view">
  3. <div class="station-header">
  4. <StationForm
  5. :international="international"
  6. @form-data-change="formDataChangeHandler"
  7. />
  8. <div class="station-count">
  9. <CountBox
  10. :count-number="tableDataCount.waybillCount"
  11. label="预计装载总运单数"
  12. />
  13. <CountBox
  14. v-show="goodsCountFlag"
  15. :count-number="tableDataCount.goodsCount"
  16. label="预计装载总件数"
  17. />
  18. </div>
  19. <div class="station-settings">
  20. <TableSwitch v-model:flag="goodsCountFlag" label="显示件数" />
  21. <TableSwitch v-model:flag="UTCFlag" label="开启UTC" />
  22. <ColumnSet
  23. :table-columns="tableColumns"
  24. @checked-submit="columnChecked"
  25. />
  26. </div>
  27. </div>
  28. <div class="station-table">
  29. <el-auto-resizer>
  30. <template #default="{ height, width }">
  31. <el-table-v2
  32. :columns="filteredColumns"
  33. :data="tableData"
  34. :width="width"
  35. :height="height"
  36. :footer-height="60"
  37. :row-class="rowClass"
  38. fixed
  39. >
  40. <template #cell="slot: CellSlotProps">
  41. <div :class="cellClass(slot)" @click="cellClickHandler(slot)">
  42. <span class="cell-text">
  43. {{ slot.rowData[slot.column.dataKey] }}
  44. </span>
  45. <div class="cell-background" />
  46. </div>
  47. </template>
  48. <template #footer>
  49. <div class="table-footer">
  50. <span class="table-footer-count"
  51. >航班总数:{{ tableDataCount.flightCount }}</span
  52. >
  53. <span class="table-footer-count"
  54. >货运航班总数:{{ tableDataCount.freightFlightCount }}</span
  55. >
  56. <span class="table-footer-count"
  57. >已装机总数:{{ tableDataCount.loadCount }}</span
  58. >
  59. <span class="table-footer-count"
  60. >已起飞总数:{{ tableDataCount.takeOffCount }}</span
  61. >
  62. </div>
  63. </template>
  64. </el-table-v2>
  65. </template>
  66. </el-auto-resizer>
  67. </div>
  68. </div>
  69. </template>
  70. <script lang="ts" setup>
  71. import { PropType } from 'vue'
  72. import type { StationFormData, CellSlotProps } from '../../type'
  73. import StationForm from '../../components/StationForm/index.vue'
  74. import ColumnSet from '../../components/ColumnSet/index.vue'
  75. import CountBox from '../../components/CountBox/index.vue'
  76. import TableSwitch from '../../components/TableSwitch/index.vue'
  77. import useTableColumnSet from '../../hooks/useTableColumnSet'
  78. import useTableData from '../../hooks/useTableData'
  79. import useTableStyle from '../../hooks/useTableStyle'
  80. import useTableCellClick from '../../hooks/useTableCellClick'
  81. type StationViewName =
  82. | 'departure'
  83. | 'arrival'
  84. | 'internationalDeparture'
  85. | 'internationalArrival'
  86. const props = defineProps({
  87. stationViewName: {
  88. type: String as PropType<StationViewName>,
  89. required: true,
  90. },
  91. })
  92. const international = computed(() =>
  93. ['internationalDeparture', 'internationalArrival'].includes(
  94. props.stationViewName
  95. )
  96. )
  97. const formData: StationFormData = {
  98. startDate: '',
  99. endDate: '',
  100. flightStatus: '',
  101. flightWarning: '',
  102. waybillType: '',
  103. }
  104. const formDataChangeHandler = (data: StationFormData) => {
  105. Object.keys(data).forEach(key => {
  106. formData[key] = data[key]
  107. })
  108. }
  109. const goodsCountFlag = ref(true)
  110. const UTCFlag = ref(true)
  111. const { tableColumns, tableData } = useTableData(
  112. props.stationViewName,
  113. formData
  114. )
  115. const { columnChecked, filteredColumns } = useTableColumnSet(tableColumns)
  116. const { rowClass, cellClass } = useTableStyle()
  117. const tableDataCount = reactive({
  118. waybillCount: 0,
  119. goodsCount: 0,
  120. flightCount: 0,
  121. freightFlightCount: 0,
  122. loadCount: 0,
  123. takeOffCount: 0,
  124. })
  125. watch(tableData, records => {
  126. tableDataCount.waybillCount = records.length
  127. tableDataCount.goodsCount = records.length
  128. tableDataCount.flightCount = records.length
  129. tableDataCount.freightFlightCount = records.length
  130. tableDataCount.loadCount = records.length
  131. tableDataCount.takeOffCount = records.length
  132. })
  133. const { cellClickHandler } = useTableCellClick()
  134. </script>
  135. <style lang="scss" scoped>
  136. @import '../../style/station.scss';
  137. </style>