baggageList.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <template>
  2. <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="baggageList">
  3. <Table style="height:100%" tableName="行李跟踪信息表" :istableCol="true" :tableTag="tableTag" ref="table" />
  4. <div class="btns">
  5. <img class="btn-square btn-shadow r16" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '行李节点列表')">
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import Table from '../../newQuery/components/table.vue'
  11. import Dialog from '@/layout/components/Dialog/index.vue'
  12. import pf from '@/layout/mixin/publicFunc'
  13. import { exportToExcel } from '@/utils/table'
  14. export default {
  15. name: 'BaggageList',
  16. mixins: [pf],
  17. components: { Dialog, Table },
  18. props: {
  19. query: {
  20. type: Object,
  21. default: () => { }
  22. },
  23. tagObj: {
  24. type: Object,
  25. default: () => { }
  26. },
  27. tableDatas: {
  28. type: Array,
  29. default: []
  30. },
  31. },
  32. data () {
  33. return {
  34. tableCols: [],
  35. baggageTableData: [],
  36. spanArr: [],
  37. pos: 0,
  38. loading: false,
  39. dataContent: {},
  40. tableTag: {}
  41. }
  42. },
  43. watch: {
  44. tagObj: {
  45. handler (obj) {
  46. this.tableTag = obj
  47. },
  48. deep: true,
  49. }
  50. },
  51. mounted () {
  52. this.tableTag = this.tagObj
  53. },
  54. methods: {
  55. async queryDetails (auth_id) {
  56. try {
  57. this.loading = true
  58. const { code, returnData } = await this.getQueryListAuth(SERVICE_ID.bagDetailId, this.dataContent, 1, 20, auth_id)
  59. if (code == 0 && returnData && returnData.length) {
  60. this.baggageTableData = returnData.map((item, index) => {
  61. if (item['dealTime']) {
  62. item['dealTime'] = item['dealTime'].replace('T', ' ')
  63. }
  64. item['departureInfo'] = `${item['departureAirport']}\n${item['departureTime'] ? item['departureTime'].replace('T', '\n') : ''
  65. }`
  66. item['landingInfo'] = `${item['landingAirport']}\n${item['landingTime'] ? item['landingTime'].replace('T', '\n') : ''
  67. }`
  68. return item
  69. })
  70. this.initTableData(this.baggageTableData)
  71. this.loading = false
  72. } else {
  73. this.loading = false
  74. }
  75. } catch (error) {
  76. this.loading = false
  77. console.log(error)
  78. this.$message.error('失败')
  79. }
  80. },
  81. initTableData (tableData) {
  82. const spanArr = []
  83. let pos = 0
  84. for (let i = 0; i < tableData.length; i++) {
  85. if (i === 0) {
  86. spanArr.push(1)
  87. } else {
  88. if (
  89. tableData[i]['F1'] === tableData[i - 1]['F1'] &&
  90. tableData[i]['F2'] === tableData[i - 1]['F2'] &&
  91. tableData[i]['departureAirport'] === tableData[i - 1]['departureAirport'] &&
  92. tableData[i]['landingAirport'] === tableData[i - 1]['landingAirport']
  93. ) {
  94. spanArr[pos] += 1
  95. spanArr.push(0)
  96. } else {
  97. spanArr.push(1)
  98. pos = i
  99. }
  100. }
  101. }
  102. this.spanArr = spanArr
  103. this.pos = pos
  104. },
  105. headerCellClass ({ row, column, rowIndex, columnIndex }) {
  106. if (['departureInfo', 'landingInfo'].includes(column.property)) {
  107. return 'pre-line'
  108. }
  109. },
  110. cellClass ({ row, column, rowIndex, columnIndex }) {
  111. const classes = []
  112. if (
  113. ['flightNO', 'U_Device_ID'].includes(column.property) &&
  114. row[column.property] &&
  115. row[column.property] !== 'FBULK'
  116. ) {
  117. classes.push('cell-click')
  118. }
  119. if (['departureInfo', 'landingInfo'].includes(column.property)) {
  120. classes.push('pre-line')
  121. }
  122. return classes.join(' ')
  123. },
  124. cellClickHandler (row, column, cell, event) {
  125. if (row[column.property] && row[column.property] !== 'FBULK') {
  126. switch (column.property) {
  127. case 'flightNO':
  128. this.$router.push({
  129. path: `${this.$route.path.split('/').slice(0, -1).join('/')}/flightView`,
  130. query: {
  131. flightNO: row.flightNO,
  132. flightDate: row.flightDate
  133. }
  134. })
  135. break
  136. case 'U_Device_ID':
  137. this.$router.push({
  138. path: `${this.$route.path.split('/').slice(0, -1).join('/')}/containerView`,
  139. query: {
  140. flightNO: row.flightNO,
  141. flightDate: row.flightDate,
  142. departureAirport: row.departureAirport,
  143. landingAirport: row.landingAirport,
  144. containerID: row.U_Device_ID
  145. }
  146. })
  147. break
  148. default:
  149. break
  150. }
  151. }
  152. },
  153. tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
  154. if (['flightNO', 'flightDate', 'departureInfo', 'landingInfo'].includes(column['property'])) {
  155. const _row = this.spanArr[rowIndex]
  156. const _col = _row > 0 ? 1 : 0
  157. return {
  158. rowspan: _row,
  159. colspan: _col
  160. }
  161. }
  162. },
  163. exportHandler (refName, tableName) {
  164. const table = this.$refs[refName].$el.cloneNode(true)
  165. const { luggageNum, carrierFlights, carrierFlightsDate } = this.query
  166. const fileName = `${tableName}-${luggageNum}-${carrierFlights}-${carrierFlightsDate}.xlsx`
  167. exportToExcel(table, tableName, fileName)
  168. },
  169. }
  170. }
  171. </script>
  172. <style lang="scss" scoped>
  173. .baggageList {
  174. height: 100%;
  175. position: relative;
  176. .btns {
  177. position: absolute;
  178. top: -50px;
  179. right: 66px;
  180. z-index: 10;
  181. .r16 {
  182. margin-right: 16px;
  183. }
  184. }
  185. }
  186. </style>