index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. <template>
  2. <div class="dashboard">
  3. <div class="dashboard-scrollbar">
  4. <div
  5. v-loading="loading"
  6. element-loading-text="拼命加载中"
  7. element-loading-spinner="el-icon-loading"
  8. element-loading-background="rgba(0, 0, 0, 0.3)"
  9. class="dashboard-wrapper"
  10. >
  11. <div class="dashboard-card">
  12. <div class="dashboard-card-wrapper">
  13. <div class="dashboard-card-title">当日进港航班数</div>
  14. <div class="dashboard-card-content">
  15. <CountBox
  16. :count-number="arrivalFlightCount"
  17. :count-length="9"
  18. />
  19. </div>
  20. </div>
  21. <div class="dashboard-card-wrapper">
  22. <div class="dashboard-card-title">当日出港航班数</div>
  23. <div class="dashboard-card-content">
  24. <CountBox
  25. :count-number="departureFlightCount"
  26. :count-length="9"
  27. />
  28. </div>
  29. </div>
  30. </div>
  31. <div class="dashboard-card">
  32. <div class="dashboard-card-wrapper">
  33. <div class="dashboard-card-title">航司行李量排行</div>
  34. </div>
  35. <div
  36. v-if="companyData.length"
  37. class="dashboard-card-content"
  38. >
  39. <vue-seamless-scroll
  40. class="scroll-table"
  41. :class-option="defaultOption"
  42. >
  43. <div
  44. v-for="item in companyData"
  45. :key="item.name"
  46. class="company-baggage-item"
  47. >
  48. <div class="company-name">{{ item.name }}</div>
  49. <div class="company-progress">
  50. <el-progress
  51. :percentage="item.percentage"
  52. :color="customColor"
  53. :show-text="false"
  54. :stroke-width="8"
  55. ></el-progress>
  56. </div>
  57. <div class="company-count">{{ item.count }}</div>
  58. </div>
  59. </vue-seamless-scroll>
  60. </div>
  61. </div>
  62. <div class="dashboard-card">
  63. <div class="dashboard-card-wrapper">
  64. <div class="dashboard-card-title">
  65. <span class="title-text">航站选择</span>
  66. <el-select
  67. v-model="currentAirport"
  68. placeholder="请选择航站"
  69. filterable
  70. default-first-option
  71. >
  72. <el-option
  73. v-for="option in aiportOptions"
  74. :key="option.value"
  75. :label="option.label"
  76. :value="option.value"
  77. />
  78. </el-select>
  79. </div>
  80. </div>
  81. </div>
  82. <div class="dashboard-card">
  83. <div class="dashboard-card-wrapper">
  84. <div class="dashboard-card-title">当日行李量统计</div>
  85. <div class="dashboard-card-content">
  86. <div
  87. v-for="item in baggageCountItems"
  88. :key="item.title"
  89. class="baggage-count-item"
  90. >
  91. <div class="baggage-count-num">{{ item.num }}</div>
  92. <div class="baggage-count-title">{{ item.title }}</div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="dashboard-card">
  98. <div class="dashboard-card-wrapper">
  99. <div class="dashboard-card-title">当日行李目的地分布图</div>
  100. </div>
  101. <div class="dashboard-card-content">
  102. <MapCharts
  103. id="box-map"
  104. :option="boxMap"
  105. />
  106. </div>
  107. </div>
  108. <div class="dashboard-card">
  109. <div class="dashboard-card-wrapper">
  110. <div class="dashboard-card-title">每日小时行李处理量 - 进港</div>
  111. </div>
  112. <div class="dashboard-card-content">
  113. <BarCharts
  114. id="inHour"
  115. :option="inHourDataOption"
  116. />
  117. </div>
  118. </div>
  119. <div class="dashboard-card">
  120. <div class="dashboard-card-wrapper">
  121. <div class="dashboard-card-title">每日小时行李处理量 - 出港</div>
  122. </div>
  123. <div class="dashboard-card-content">
  124. <BarCharts
  125. id="outHour"
  126. :option="outHourDataOption"
  127. />
  128. </div>
  129. </div>
  130. <div class="dashboard-card">
  131. <div class="dashboard-card-wrapper">
  132. <div class="dashboard-card-title">每日小时行李处理量 - 中转</div>
  133. </div>
  134. <div class="dashboard-card-content">
  135. <BarCharts
  136. id="transHour"
  137. :option="transHourDataOption"
  138. />
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. </div>
  144. </template>
  145. <script>
  146. import CountBox from '@/components/CountBox/index.vue'
  147. import BarCharts from '@/layout/components/Echarts/commonChartsBar.vue'
  148. import MapCharts from '@/layout/components/Echarts/commonChartsChinaMap.vue'
  149. import VueSeamlessScroll from 'vue-seamless-scroll'
  150. import { Query } from '@/api/webApi'
  151. import { parseTime } from '@/utils'
  152. import { getAuthData } from '@/utils/validate'
  153. const defaultDate = parseTime(new Date(), '{y}-{m}-{d}')
  154. // const defaultDate = '2023-06-19'
  155. const barOption = {
  156. tooltip: {
  157. trigger: 'axis',
  158. axisPointer: {
  159. type: 'shadow',
  160. },
  161. },
  162. grid: {
  163. left: '3%',
  164. right: '4%',
  165. bottom: '3%',
  166. containLabel: true,
  167. },
  168. xAxis: {
  169. type: 'category',
  170. data: [],
  171. axisLabel: {
  172. color: '#8897BC',
  173. },
  174. axisTick: {
  175. alignWithLabel: true,
  176. },
  177. },
  178. yAxis: {
  179. type: 'value',
  180. axisLabel: {
  181. color: '#8897BC',
  182. },
  183. },
  184. series: [
  185. {
  186. data: [],
  187. type: 'bar',
  188. barWidth: '16px',
  189. },
  190. ],
  191. }
  192. export default {
  193. name: 'Dashboard',
  194. components: {
  195. CountBox,
  196. BarCharts,
  197. MapCharts,
  198. VueSeamlessScroll,
  199. },
  200. data() {
  201. return {
  202. loading: false,
  203. arrivalFlightCount: 0,
  204. departureFlightCount: 0,
  205. currentAirport: '',
  206. aiportOptions: [],
  207. companyData: [],
  208. customColor: '#478BE7',
  209. baggageCountItems: [
  210. {
  211. title: '行李总数',
  212. num: 0,
  213. },
  214. {
  215. title: '进港行李数',
  216. num: 0,
  217. },
  218. {
  219. title: '出港行李数',
  220. num: 0,
  221. },
  222. {
  223. title: '中转行李数',
  224. num: 0,
  225. },
  226. ],
  227. boxMap: {
  228. tooltip: {
  229. trigger: 'item',
  230. formatter: function (item) {
  231. if (item.data && item.data.index) {
  232. const html = `<div>
  233. <div>TOP ${item.data.index}</div>
  234. <div>${item.data.name} ${item.data.value}</div>
  235. </div>`
  236. return html
  237. } else {
  238. return '<div>暂无数据</div>'
  239. }
  240. },
  241. },
  242. legend: {
  243. show: false,
  244. },
  245. grid: {
  246. left: 0,
  247. right: 0,
  248. top: 0,
  249. bottom: 0,
  250. },
  251. visualMap: {
  252. type: 'continuous',
  253. text: ['高', '低'],
  254. min: 0,
  255. max: 20000,
  256. seriesIndex: [0, 2],
  257. dimension: 0,
  258. realtime: false,
  259. left: 0,
  260. bottom: '30%',
  261. itemWidth: 8,
  262. itemHeight: 93,
  263. calculable: true,
  264. inRange: {
  265. color: ['#869CBC', 'yellow'],
  266. symbolSize: [100, 100],
  267. },
  268. textStyle: {
  269. color: '#fff',
  270. },
  271. outOfRange: {
  272. color: ['orange'],
  273. symbolSize: [100, 100],
  274. },
  275. },
  276. toolbox: {
  277. show: false,
  278. },
  279. xAxis: {
  280. show: false,
  281. },
  282. yAxis: {
  283. show: false,
  284. },
  285. series: [
  286. {
  287. name: '行李数',
  288. type: 'map',
  289. mapType: 'china',
  290. // left: '100',
  291. // width: '40%',
  292. roam: 'move',
  293. mapValueCalculation: 'sum',
  294. zoom: 1,
  295. selectedMode: false,
  296. showLegendSymbol: false,
  297. left: '10%',
  298. top: '10%',
  299. width: '80%',
  300. label: {
  301. normal: {
  302. textStyle: {
  303. color: '#666666',
  304. },
  305. },
  306. emphasis: {
  307. textStyle: {
  308. color: '#234EA5',
  309. },
  310. },
  311. },
  312. itemStyle: {
  313. normal: {
  314. areaColor: '#fff',
  315. borderColor: '#666666',
  316. },
  317. emphasis: {
  318. areaColor: '#E5F39B',
  319. },
  320. },
  321. data: [],
  322. },
  323. ],
  324. },
  325. inHourDataOption: this._.cloneDeep(barOption),
  326. outHourDataOption: this._.cloneDeep(barOption),
  327. transHourDataOption: this._.cloneDeep(barOption),
  328. authId: null,
  329. queryId: null,
  330. }
  331. },
  332. computed: {
  333. defaultOption() {
  334. return {
  335. step: 0.5, // 数值越大速度滚动越快
  336. limitMoveNum: 2, // 开始无缝滚动的数据量 //this.fourDatata.length
  337. hoverStop: true, // 是否开启鼠标悬停stop
  338. direction: 1, // 0向下 1向上 2向左 3向右
  339. openWatch: true, // 开启数据实时监控刷新dom
  340. singleHeight: 0, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1
  341. singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3
  342. waitTime: 1000, // 单步运动停止的时间(默认值1000ms)
  343. }
  344. },
  345. },
  346. watch: {
  347. currentAirport(val) {
  348. if (val) {
  349. this.getAllData()
  350. }
  351. },
  352. },
  353. created() {
  354. this.inHourDataOption.series[0].color = '#3FC9D5'
  355. this.outHourDataOption.series[0].color = '#527CF5'
  356. this.transHourDataOption.series[0].color = '#F5C871'
  357. },
  358. mounted() {
  359. const { auth_id } = this.$route.meta
  360. if (auth_id) {
  361. const { arrs } = getAuthData(auth_id)
  362. if (arrs && arrs.length) {
  363. const obj = arrs[0]
  364. this.authId = obj.auth_id
  365. this.queryId = obj.queryTemplateID
  366. }
  367. }
  368. this.getAiportList()
  369. },
  370. methods: {
  371. // 航站列表
  372. async getAiportList() {
  373. this.loading = true
  374. try {
  375. let params = {
  376. serviceId: SERVICE_ID.AirportIds,
  377. dataContent: [],
  378. pageSize: 9999,
  379. }
  380. if (this.queryId) {
  381. params = {
  382. ...params,
  383. authId: this.authId,
  384. serviceId: this.queryId,
  385. }
  386. }
  387. const {
  388. code,
  389. returnData: { listValues },
  390. message,
  391. } = await Query(params)
  392. if (String(code) !== '0') {
  393. throw new Error(message || '失败')
  394. }
  395. this.aiportOptions = listValues.map(aiport => ({
  396. label: aiport.code3,
  397. value: aiport.code3,
  398. }))
  399. this.currentAirport = 'CAN'
  400. } catch (error) {
  401. console.error(error)
  402. }
  403. this.loading = false
  404. },
  405. // 当日数量和小时数量
  406. async getDateData(serviceId) {
  407. try {
  408. const {
  409. code,
  410. returnData: listValues,
  411. message,
  412. } = await Query({
  413. serviceId,
  414. dataContent: [
  415. {
  416. fd1: defaultDate,
  417. fd2: defaultDate,
  418. airport: this.currentAirport,
  419. },
  420. ],
  421. pageSize: 9999,
  422. })
  423. if (String(code) !== '0') {
  424. throw new Error(message || '失败')
  425. }
  426. return listValues
  427. } catch (error) {
  428. console.error(error)
  429. return []
  430. }
  431. },
  432. // 航司行李量排行
  433. async getCompanyData() {
  434. try {
  435. this.companyData = []
  436. const {
  437. code,
  438. returnData: listValues,
  439. message,
  440. } = await Query({
  441. serviceId: SERVICE_ID.dashboardCompanyData,
  442. dataContent: [
  443. {
  444. airport: this.currentAirport,
  445. fd1: defaultDate,
  446. fd2: defaultDate,
  447. },
  448. ],
  449. pageSize: 9999,
  450. })
  451. if (String(code) !== '0') {
  452. throw new Error(message || '失败')
  453. }
  454. const max = Math.max(...listValues.map(item => Number(item.bags)))
  455. this.companyData = listValues.map(item => ({
  456. name: item.iata_code,
  457. count: Number(item.bags),
  458. percentage: max ? (Number(item.bags) / max).toFixed(2) * 100 : 0,
  459. }))
  460. } catch (error) {
  461. console.error(error)
  462. }
  463. },
  464. // 当日行李分布
  465. async getMap() {
  466. try {
  467. const {
  468. code,
  469. returnData: listValues,
  470. message,
  471. } = await Query({
  472. serviceId: SERVICE_ID.dashboardMap,
  473. dataContent: [
  474. {
  475. airport: this.currentAirport,
  476. fd1: defaultDate,
  477. fd2: defaultDate,
  478. },
  479. ],
  480. pageSize: 9999,
  481. })
  482. if (String(code) !== '0') {
  483. this.boxMap.series[0].data = []
  484. throw new Error(message || '失败')
  485. }
  486. listValues.sort((a, b) => b.bags - a.bags)
  487. listValues.map((item, index) => {
  488. item.name = item.in_province
  489. item.value = item.bags
  490. item.index = index + 1
  491. })
  492. this.boxMap.series[0].data = listValues
  493. } catch (error) {
  494. console.error(error)
  495. }
  496. },
  497. async getAllData() {
  498. this.loading = true
  499. try {
  500. const serviceIdList = [
  501. SERVICE_ID.dashboardDateFlightData,
  502. SERVICE_ID.dashboardDateBaggageData,
  503. SERVICE_ID.dashboardHourBaggageIn,
  504. SERVICE_ID.dashboardHourBaggageOut,
  505. SERVICE_ID.dashboardHourBaggageTrans,
  506. ]
  507. const [
  508. [dateFlightData],
  509. [dateBaggageData],
  510. inHourData,
  511. outHourData,
  512. transHourData,
  513. ] = await Promise.all([
  514. ...serviceIdList.map(id => this.getDateData(id)),
  515. this.getCompanyData(),
  516. this.getMap(),
  517. ])
  518. this.arrivalFlightCount = Number(dateFlightData.flights_in)
  519. this.departureFlightCount = Number(dateFlightData.flights_out)
  520. this.baggageCountItems[0].num = Number(dateBaggageData.bags)
  521. this.baggageCountItems[1].num = Number(dateBaggageData.bags_in)
  522. this.baggageCountItems[2].num = Number(dateBaggageData.bags_out)
  523. this.baggageCountItems[3].num = Number(dateBaggageData.transfer_bags)
  524. const sortedInHoutData = this._.sortBy(inHourData, 'dat')
  525. const sortedOutHoutData = this._.sortBy(outHourData, 'dat')
  526. const sortedTransHoutData = this._.sortBy(transHourData, 'dat')
  527. this.inHourDataOption.xAxis.data = sortedInHoutData.reduce((prev, curr) => {
  528. if ((curr.dat ?? '') !== '') {
  529. prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
  530. }
  531. return prev
  532. }, [])
  533. this.inHourDataOption.series[0].data = sortedInHoutData.reduce(
  534. (prev, curr) => {
  535. if ((curr.dat ?? '') !== '') {
  536. prev.push(Number(curr.bags))
  537. }
  538. return prev
  539. },
  540. []
  541. )
  542. this.outHourDataOption.xAxis.data = sortedOutHoutData.reduce((prev, curr) => {
  543. if ((curr.dat ?? '') !== '') {
  544. prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
  545. }
  546. return prev
  547. }, [])
  548. this.outHourDataOption.series[0].data = sortedOutHoutData.reduce(
  549. (prev, curr) => {
  550. if ((curr.dat ?? '') !== '') {
  551. prev.push(Number(curr.bags))
  552. }
  553. return prev
  554. },
  555. []
  556. )
  557. this.transHourDataOption.xAxis.data = sortedTransHoutData.reduce(
  558. (prev, curr) => {
  559. if ((curr.dat ?? '') !== '') {
  560. prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
  561. }
  562. return prev
  563. },
  564. []
  565. )
  566. this.transHourDataOption.series[0].data = sortedTransHoutData.reduce(
  567. (prev, curr) => {
  568. if ((curr.dat ?? '') !== '') {
  569. prev.push(Number(curr.bags))
  570. }
  571. return prev
  572. },
  573. []
  574. )
  575. } catch (error) {
  576. console.error(error)
  577. }
  578. this.loading = false
  579. },
  580. },
  581. }
  582. </script>
  583. <style lang="scss" scoped>
  584. .dashboard {
  585. width: 100%;
  586. height: calc(100vh - 48px - 32px);
  587. padding: 16px 20px;
  588. background-color: #081821;
  589. color: #fff;
  590. &-scrollbar {
  591. margin-right: -20px;
  592. width: calc(100% + 20px);
  593. height: 100%;
  594. overflow-x: hidden;
  595. overflow-y: auto;
  596. }
  597. &-wrapper {
  598. width: 100%;
  599. height: 968px;
  600. display: flex;
  601. flex-direction: column;
  602. flex-wrap: wrap;
  603. justify-content: space-between;
  604. }
  605. &-card {
  606. width: calc((100% - 16px * 2) / 3);
  607. height: calc((100% - 16px * 2) / 3);
  608. padding: 25px;
  609. display: flex;
  610. flex-direction: column;
  611. border: 1px solid #3a4456;
  612. background: linear-gradient(270deg, rgba(118, 142, 184, 0.25), transparent);
  613. position: relative;
  614. &::before {
  615. content: '';
  616. display: block;
  617. width: 0;
  618. height: 0;
  619. position: absolute;
  620. top: 0;
  621. left: 0;
  622. border: 12px solid #6d7d98;
  623. border-right-color: transparent;
  624. border-bottom-color: transparent;
  625. }
  626. &-wrapper {
  627. height: 0;
  628. flex: 1;
  629. &:not(:first-child) {
  630. margin-top: 25px;
  631. }
  632. }
  633. &-title {
  634. height: 40px;
  635. line-height: 16px;
  636. font-size: 16px;
  637. font-family: Helvetica, Microsoft YaHei;
  638. font-weight: bold;
  639. }
  640. &-content {
  641. height: calc(100% - 40px);
  642. }
  643. &:nth-child(1) {
  644. .dashboard-card-content {
  645. max-height: 64px;
  646. }
  647. }
  648. &:nth-child(3) {
  649. height: 40px;
  650. padding: 0 25px;
  651. &::before {
  652. display: none;
  653. }
  654. .dashboard-card-title {
  655. height: 38px;
  656. display: flex;
  657. justify-content: space-between;
  658. line-height: 38px;
  659. .el-select {
  660. width: 120px;
  661. ::v-deep .el-input__inner {
  662. border: none;
  663. background-color: transparent;
  664. font-size: 16px;
  665. font-family: Helvetica, Microsoft YaHei;
  666. font-weight: bold;
  667. color: #ffffff;
  668. }
  669. }
  670. }
  671. }
  672. &:nth-child(4) {
  673. height: calc((100% - 16px * 2) / 3 - 40px - 16px);
  674. }
  675. &:nth-child(2),
  676. &:nth-child(5) {
  677. height: calc((100% - 16px * 2) / 3 * 2 + 16px);
  678. }
  679. &:nth-child(4) {
  680. .dashboard-card-content {
  681. display: flex;
  682. flex-wrap: wrap;
  683. justify-content: space-between;
  684. .baggage-count-item {
  685. height: 50%;
  686. padding-left: 96px;
  687. display: flex;
  688. flex-direction: column;
  689. justify-content: center;
  690. position: relative;
  691. font-family: Helvetica, Microsoft YaHei;
  692. font-weight: bold;
  693. .baggage-count-num {
  694. width: 120px;
  695. font-size: 36px;
  696. color: #f7c15a;
  697. }
  698. .baggage-count-title {
  699. font-size: 14px;
  700. }
  701. &::before {
  702. content: url('../../assets/analysis/ic.png');
  703. display: block;
  704. width: 72px;
  705. height: 72px;
  706. position: absolute;
  707. top: 50%;
  708. left: 0;
  709. transform: translate(0, -50%);
  710. }
  711. }
  712. }
  713. }
  714. &:nth-child(5) {
  715. background: transparent;
  716. border: none;
  717. &::before {
  718. display: none;
  719. }
  720. }
  721. }
  722. .scroll-table {
  723. height: 100%;
  724. overflow: hidden;
  725. .company-baggage-item {
  726. margin-top: 36px;
  727. display: flex;
  728. align-items: center;
  729. font-size: 14px;
  730. font-family: Helvetica;
  731. font-weight: bold;
  732. color: #ffffff;
  733. .company-progress {
  734. flex: 1;
  735. margin: 0 23px;
  736. }
  737. ::v-deep .progress {
  738. flex: 1;
  739. margin: 0 36px;
  740. .el-progress-bar {
  741. padding-right: 0;
  742. .el-progress-bar__outer {
  743. background-color: #534e75;
  744. }
  745. }
  746. .el-progress__text {
  747. display: none;
  748. }
  749. }
  750. }
  751. }
  752. }
  753. </style>