baggageView.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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="baggageView">
  3. <el-scrollbar style="height: 100%">
  4. <div v-infinite-scroll="load" class="baggageView-content">
  5. <div v-for="(item,index) in tableData" :key="index" class="baggageView-list">
  6. <div class="part2">
  7. <div class="part2_info">
  8. <div class="title">
  9. <div class="fightNo">{{ item.flightNo }}</div>
  10. <div class="fightDate">{{ item.flightDate }}</div>
  11. <div class="fightLine">{{ item.sourceAirport }}{{ item.takeoff_terminal }} -- {{item.target_airport}}{{ item.target_terminal }}</div>
  12. <div class="fightTime">08:22 -- 10:22</div>
  13. </div>
  14. <div class="baggage-track-chart">
  15. <div class="step-line">
  16. <div v-for="(line, index) in 6" :key="index" :class="['step-line-segment', { 'step-line-active': activeStepLine(index) }]" />
  17. </div>
  18. <div v-for="(item, index) in stepNodes" :key="index" :class="{ 'step-item': true, 'active-item': item.currentResult }">
  19. <div class="step-circle">
  20. <span class="step-name">{{ item.nodeName }}</span>
  21. </div>
  22. <div v-if="item.currentResult" class="step-info">
  23. <div :class="statusClasses(item.currentResult)">{{ item.currentResult }}</div>
  24. <span class="step-time">{{ item.processingTime }}</span>
  25. <div class="step-location">{{ item.locationId }}</div>
  26. </div>
  27. <div v-else class="step-info">无</div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </el-scrollbar>
  35. </div>
  36. </template>
  37. <script>
  38. import pf from '@/layout/mixin/publicFunc'
  39. export default {
  40. name: 'BaggageView',
  41. mixins: [pf],
  42. props: {
  43. query: {
  44. type: Object,
  45. default: () => { }
  46. },
  47. tagObj: {
  48. type: Object,
  49. default: () => { }
  50. }
  51. },
  52. data () {
  53. return {
  54. stepNodes: [],
  55. tableData: [],
  56. page: 0,
  57. pageSize: 20,
  58. dataContent: {},
  59. loading: false,
  60. noMore: false
  61. }
  62. },
  63. computed: {
  64. activeStepLine () {
  65. return function (index) {
  66. return this.stepNodes[index].currentResult && this.stepNodes[index + 1].currentResult
  67. }
  68. },
  69. statusClasses () {
  70. return function (status) {
  71. const classes = ['step-status']
  72. if (typeof status === 'string') {
  73. if (status.includes('正常') || status.includes('通过')) {
  74. classes.push('step-status-normal')
  75. } else {
  76. classes.push('step-status-abnormal')
  77. }
  78. }
  79. return classes
  80. }
  81. },
  82. },
  83. watch: {
  84. tagObj: {
  85. handler (obj) {
  86. this.dataContent = obj
  87. this.restTable()
  88. this.load()
  89. },
  90. deep: true
  91. }
  92. },
  93. created () {
  94. this.dataContent = this.query
  95. },
  96. mounted () {
  97. this.resetStepNodes()
  98. },
  99. methods: {
  100. //获取行李信息
  101. async getLuggageList (id, dataContent = this.dataContent, page, pageSize) {
  102. function isSameStep (code1, code2) {
  103. const sameStepCodes = ['ARRIVED', 'TRANSFER']
  104. return sameStepCodes.includes(code1) && sameStepCodes.includes(code2)
  105. }
  106. try {
  107. this.loading = true
  108. this.resetStepNodes()
  109. const { code, returnData } = await this.getQueryList(id, dataContent, page, pageSize)
  110. if (code == 0) {
  111. if (returnData.length === 0) {
  112. this.page--;
  113. this.noMore = true;
  114. this.loading = false;
  115. }
  116. returnData.forEach(({ nodeCode, nodeName, processingTime, locationId, currentResult }) => {
  117. const replaceIndex = this.stepNodes.findIndex(
  118. stepNode => stepNode.nodeCode === nodeCode || isSameStep(stepNode.nodeCode, nodeCode)
  119. )
  120. if (replaceIndex > -1) {
  121. this.stepNodes.splice(replaceIndex, 1, {
  122. nodeCode,
  123. nodeName,
  124. processingTime: processingTime?.replace('T', '\n'),
  125. locationId,
  126. currentResult
  127. })
  128. }
  129. })
  130. this.tableData.push(...returnData);
  131. this.loading = false;
  132. } else {
  133. this.page--;
  134. this.loading = false;
  135. this.$message.error("获取表格数据失败");
  136. }
  137. } catch (error) {
  138. console.log(error)
  139. }
  140. },
  141. restTable () {
  142. this.loading = false
  143. this.noMore = false
  144. this.page = 0
  145. this.tableData = []
  146. },
  147. load () {
  148. if (this.noMore || this.loading) {
  149. return;
  150. }
  151. this.getLuggageList(SERVICE_ID.bagDetailId, this.dataContent, ++this.page, this.pageSize);
  152. console.log(this.stepNodes)
  153. },
  154. resetStepNodes () {
  155. this.stepNodes = [
  156. {
  157. nodeCode: 'CHECKIN',
  158. nodeName: '值机'
  159. },
  160. {
  161. nodeCode: 'SECURITY',
  162. nodeName: '安检'
  163. },
  164. {
  165. nodeCode: 'SORT',
  166. nodeName: '分拣'
  167. },
  168. {
  169. nodeCode: 'LOAD',
  170. nodeName: '装车'
  171. },
  172. {
  173. nodeCode: 'INFL',
  174. nodeName: '装机'
  175. },
  176. {
  177. nodeCode: 'UNLOAD',
  178. nodeName: '卸机'
  179. },
  180. {
  181. nodeCode: 'ARRIVED',
  182. nodeName: '到达'
  183. }
  184. ]
  185. },
  186. }
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. .baggageView {
  191. height: 100%;
  192. &-list {
  193. height: 183px;
  194. border-bottom: 1px solid #dfe3ea;
  195. padding: 30px 32px 47px 32px;
  196. &:last-child {
  197. border-bottom: none;
  198. }
  199. .part2 {
  200. width: 100%;
  201. background: #ffffff;
  202. display: flex;
  203. flex-direction: row;
  204. justify-content: space-between;
  205. align-items: flex-start;
  206. .part2_info {
  207. flex: 1;
  208. display: flex;
  209. flex-direction: row;
  210. justify-content: flex-start;
  211. align-items: flex-start;
  212. line-height: 42px;
  213. .title {
  214. width: 160px;
  215. margin-right: 30px;
  216. font-size: 14px;
  217. font-family: Helvetica;
  218. font-weight: 400;
  219. color: #101116;
  220. line-height: 1;
  221. .fightNo {
  222. font-size: 24px;
  223. font-family: Helvetica;
  224. font-weight: bold;
  225. margin-bottom: 8px;
  226. }
  227. .fightDate {
  228. margin-bottom: 15px;
  229. }
  230. .fightLine {
  231. margin-bottom: 8px;
  232. }
  233. }
  234. .type {
  235. font-size: 18px;
  236. font-weight: bold;
  237. margin-right: 20px;
  238. .warn {
  239. color: #df3559;
  240. }
  241. .normal {
  242. color: #519f6b;
  243. }
  244. }
  245. .airline {
  246. width: 120px;
  247. margin-right: 20px;
  248. }
  249. .baggage-track-chart {
  250. flex: 1;
  251. height: 124px;
  252. position: relative;
  253. display: flex;
  254. flex-direction: row;
  255. justify-content: space-between;
  256. width: 100%;
  257. }
  258. .step-line {
  259. width: calc(100% - 80px);
  260. height: 10px;
  261. position: absolute;
  262. top: 16px;
  263. right: 0;
  264. left: 0;
  265. margin: auto;
  266. display: flex;
  267. .step-line-segment {
  268. width: calc(100% / 6);
  269. height: 100%;
  270. background: #afb4bf;
  271. &.step-line-active {
  272. background: #2d67e3;
  273. }
  274. }
  275. }
  276. .step-item {
  277. width: 80px;
  278. height: 100%;
  279. text-align: center;
  280. font-size: 14px;
  281. display: flex;
  282. flex-direction: column;
  283. align-items: center;
  284. justify-content: flex-start;
  285. z-index: 1;
  286. font-family: Helvetica, "Microsoft Yahei";
  287. .step-circle {
  288. width: 42px;
  289. height: 42px;
  290. border-radius: 50%;
  291. background: #aaacb2;
  292. .step-name {
  293. color: #ffffff;
  294. font-size: 14px;
  295. font-weight: bold;
  296. }
  297. }
  298. .step-info {
  299. margin-top: 8px;
  300. color: #101116;
  301. line-height: 22px;
  302. .step-status {
  303. &-normal {
  304. color: #4ab36f;
  305. }
  306. &-abnormal {
  307. color: #e9af4b;
  308. }
  309. }
  310. .step-time {
  311. white-space: pre-line;
  312. font-size: 12px;
  313. line-height: 20px;
  314. }
  315. }
  316. &.active-item .step-circle {
  317. background: #2d67e3;
  318. }
  319. }
  320. }
  321. .btns {
  322. margin-top: 6px;
  323. }
  324. }
  325. }
  326. }
  327. </style>