index.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <template>
  2. <div class="newFlightView">
  3. <div class="newFlightView-left">
  4. <div class="newFlightView-left-top">
  5. <div class="newFlightView-left-top-top">
  6. <div class="newFlightView-left-top-top-title flex-wrap">
  7. <div class="newFlightView-left-top-top-title-info">航班基本信息</div>
  8. <div class="newFlightView-left-top-top-title-no">{{ flightObj.flightNo }}</div>
  9. </div>
  10. <div class="newFlightView-left-top-top-status">
  11. <el-scrollbar style="height: 100%">
  12. <el-checkbox-group @change="checkChange" class="flex-wrap" v-model="checkList">
  13. <Item v-for="(item,index) in checkStates" :key="index" :total="checkStates" :index="index+1" :item="item" />
  14. </el-checkbox-group>
  15. </el-scrollbar>
  16. </div>
  17. </div>
  18. <div class="newFlightView-left-top-list">
  19. <el-descriptions :column="2">
  20. <el-descriptions-item label="起飞机场简称">{{ infoObj.takeoff_airport_name }}</el-descriptions-item>
  21. <el-descriptions-item label="起飞机场三字码">{{ infoObj.depStation_iataCd }}</el-descriptions-item>
  22. <el-descriptions-item :span="2" label="日期">{{ formatTime(infoObj.actualTakeOffTime,infoObj.estimateTakeOffTime,infoObj.scheduleTakeOffTime) }}</el-descriptions-item>
  23. <el-descriptions-item label="登机口">{{ infoObj.gateCd }}</el-descriptions-item>
  24. <el-descriptions-item label="停机位"> {{ infoObj.depstandCd }}</el-descriptions-item>
  25. </el-descriptions>
  26. </div>
  27. <div class="newFlightView-left-top-list">
  28. <el-descriptions :column="2">
  29. <el-descriptions-item label="降落机场简称">{{ infoObj.target_airport_name }}</el-descriptions-item>
  30. <el-descriptions-item label="降落机场三字码">{{ infoObj.arrStation_iataCd }}</el-descriptions-item>
  31. <el-descriptions-item :span="2" label="日期">{{ formatTime(infoObj.actualLandInTime,infoObj.estimateLandInTime,infoObj.scheduleLandInTime) }}</el-descriptions-item>
  32. <el-descriptions-item label="提取转盘">{{infoObj.arrcarouselCd}}</el-descriptions-item>
  33. <el-descriptions-item label="停机位"> {{ infoObj.arrstandCd }}</el-descriptions-item>
  34. </el-descriptions>
  35. </div>
  36. <div class="newFlightView-left-top-list">
  37. <el-descriptions :column="2">
  38. <el-descriptions-item label="航班状态">{{ infoObj.normalState }}</el-descriptions-item>
  39. <el-descriptions-item label="托运旅客数">{{ infoObj.checked_passengers_number }}</el-descriptions-item>
  40. <el-descriptions-item label="中转行李数">{{ infoObj.transfer_baggage_number }}</el-descriptions-item>
  41. <el-descriptions-item label="终点行李数">{{ infoObj.destination_bags_number }}</el-descriptions-item>
  42. </el-descriptions>
  43. </div>
  44. </div>
  45. <div class="newFlightView-left-bottom">
  46. <Table :tableTag="table1" tableName="容器列表" />
  47. </div>
  48. </div>
  49. <div class="newFlightView-right">
  50. <div class="newFlightView-right-top flex">
  51. <div class="newFlightView-right-top-left flex-wrap">
  52. <div class="manageTitle">航班行李列表</div>
  53. <div class="newFlightView-right-top-left-select">快捷筛选
  54. <el-select style="margin-left: 8px;border-radius: 4px;" size="small" v-model="value" filterable placeholder="请选择">
  55. <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
  56. </el-option>
  57. </el-select>
  58. </div>
  59. </div>
  60. <div class="newFlightView-right-top-right">
  61. <TimeZoneSelector />
  62. <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航班行李列表')" />
  63. </div>
  64. </div>
  65. <div class="newFlightView-right-bottom">
  66. <Table :tableTag="table2" ref="table" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" />
  67. </div>
  68. </div>
  69. </div>
  70. </template>
  71. <script>
  72. import Table from '@/views/newQuery/components/table.vue'
  73. import TimeZoneSelector from "@/components/TimeZoneSelector"
  74. import { throttledExportToExcel } from "@/utils/table"
  75. import { combine } from '@/utils'
  76. import pf from '@/layout/mixin/publicFunc'
  77. import Item from './item.vue'
  78. export default {
  79. components: { Table, TimeZoneSelector, Item },
  80. mixins: [pf],
  81. data () {
  82. return {
  83. radio: '1',
  84. options: [],
  85. value: '',
  86. dataContent: {},
  87. flightObj: {},
  88. infoObj: {},
  89. checkList: [],
  90. checkStates: [],
  91. table1: {},
  92. table2: {},
  93. showObj: {},
  94. deArrs: [],
  95. deArrsNum: []
  96. }
  97. },
  98. async created () {
  99. const query = this.$route.query
  100. const { flightNo, flightDate } = query
  101. this.flightObj = query
  102. this.dataContent = query
  103. const res = await this.getViewInfo(query)
  104. this.infoObj = res[0]
  105. const sts = await this.getViewInfo({ flightNo, flightDate })
  106. if (sts && sts.length) {
  107. for (const p of sts) {
  108. const { depStation_iataCd, arrStation_iataCd } = p
  109. this.deArrs.push({
  110. depStation_iataCd,
  111. arrStation_iataCd
  112. })
  113. }
  114. }
  115. const newDatas = _.cloneDeep(this.deArrs)
  116. if (newDatas && newDatas.length) {
  117. const m = combine(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
  118. m.forEach((item, index) => {
  119. const obj = {
  120. item,
  121. index
  122. }
  123. this.deArrsNum.push(obj)
  124. })
  125. this.checkStates = m
  126. }
  127. },
  128. mounted () {
  129. this.table1 = this.dataContent
  130. this.table2 = this.dataContent
  131. },
  132. methods: {
  133. // 获取基本信息
  134. async getViewInfo (dataContent = this.dataContent) {
  135. const { code, returnData } = await this.getQueryList(SERVICE_ID.bagViewId, dataContent)
  136. if (code == 0) {
  137. return returnData
  138. } else {
  139. return []
  140. }
  141. },
  142. // 显示日期
  143. formatTime (t1, t2, t3) {
  144. return t1 ? t1 : t2 ? t2 : t3 ? t3 : ''
  145. },
  146. // 导出
  147. exportHandler (refName, tableName) {
  148. const { flightNo, flightDate, depStation_iataCd, arrStation_iataCd } = this.flightObj
  149. const table = this.$refs[refName].$el.cloneNode(true);
  150. const fileName = `${tableName}-${flightNo}-${flightDate}-${depStation_iataCd}-${arrStation_iataCd}.xlsx`;
  151. throttledExportToExcel(table, tableName, fileName);
  152. },
  153. // 选中
  154. async checkChange (arr) {
  155. const datas = []
  156. const result = [...arr]
  157. if (result && result.length) {
  158. const c1 = result.join('-')
  159. const c2 = c1.split('-')
  160. const c3 = _.uniq(c2)
  161. this.deArrsNum.forEach(item => {
  162. c3.forEach(p => {
  163. if (item.item == p) {
  164. const obj = {
  165. name: item.item,
  166. index: item.index
  167. }
  168. datas.push(obj)
  169. }
  170. })
  171. })
  172. const caps = datas.sort((a, b) => a.index - b.index)
  173. const c4 = caps[0].name //起飞
  174. const c5 = caps[caps.length - 1].name //降落
  175. const newPrams = _.cloneDeep(this.dataContent)
  176. newPrams.depStation_iataCd = c4
  177. newPrams.arrStation_iataCd = c5
  178. this.table1 = newPrams
  179. this.table2 = newPrams
  180. const res = await this.getViewInfo(newPrams)
  181. if (res && res.length) {
  182. this.infoObj = res[0]
  183. }
  184. }
  185. }
  186. }
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. .newFlightView {
  191. height: calc(100vh - 80px);
  192. padding: 8px;
  193. display: flex;
  194. flex-wrap: wrap;
  195. &-left {
  196. width: 408px;
  197. margin-right: 8px;
  198. &-top {
  199. height: 505px;
  200. background-color: #fff;
  201. &-top {
  202. padding: 25px 16px;
  203. border-bottom: 1px solid #c8cfdb;
  204. &-title {
  205. line-height: 23px;
  206. font-size: 20px;
  207. font-family: Microsoft YaHei;
  208. font-weight: bold;
  209. color: #101116;
  210. margin-bottom: 25px;
  211. &-info {
  212. margin-right: 16px;
  213. }
  214. }
  215. &-status {
  216. font-size: 18px;
  217. font-family: Microsoft YaHei;
  218. font-weight: bold;
  219. color: #101116;
  220. ::v-deep .el-checkbox-group {
  221. font-size: initial;
  222. .el-checkbox__inner {
  223. border-radius: 50%;
  224. }
  225. .el-checkbox__label {
  226. display: none;
  227. }
  228. }
  229. }
  230. }
  231. &-list {
  232. padding: 25px 16px 13px 16px;
  233. border-bottom: 1px solid #c8cfdb;
  234. &:last-child {
  235. border-bottom: none;
  236. }
  237. }
  238. }
  239. &-bottom {
  240. height: calc(100% - 515px);
  241. margin-top: 8px;
  242. }
  243. }
  244. &-right {
  245. flex: 1;
  246. height: 100%;
  247. width: calc(100% - 416px);
  248. &-top {
  249. padding: 18px 0;
  250. &-left {
  251. line-height: 30px;
  252. }
  253. &-right {
  254. padding-right: 70px;
  255. .btn-img {
  256. margin-left: 10px;
  257. }
  258. }
  259. }
  260. &-bottom {
  261. height: calc(100% - 68px);
  262. }
  263. }
  264. }
  265. </style>