123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757 |
- <template>
- <div class="dashboard">
- <div class="dashboard-scrollbar">
- <div
- v-loading="loading"
- element-loading-text="拼命加载中"
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.3)"
- class="dashboard-wrapper"
- >
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">当日进港航班数</div>
- <div class="dashboard-card-content">
- <CountBox
- :count-number="arrivalFlightCount"
- :count-length="9"
- />
- </div>
- </div>
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">当日出港航班数</div>
- <div class="dashboard-card-content">
- <CountBox
- :count-number="departureFlightCount"
- :count-length="9"
- />
- </div>
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">航司行李量排行</div>
- </div>
- <div
- v-if="companyData.length"
- class="dashboard-card-content"
- >
- <vue-seamless-scroll
- class="scroll-table"
- :class-option="defaultOption"
- >
- <div
- v-for="item in companyData"
- :key="item.name"
- class="company-baggage-item"
- >
- <div class="company-name">{{ item.name }}</div>
- <div class="company-progress">
- <el-progress
- :percentage="item.percentage"
- :color="customColor"
- :show-text="false"
- :stroke-width="8"
- ></el-progress>
- </div>
- <div class="company-count">{{ item.count }}</div>
- </div>
- </vue-seamless-scroll>
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">
- <span class="title-text">航站选择</span>
- <el-select
- v-model="currentAirport"
- placeholder="请选择航站"
- filterable
- default-first-option
- >
- <el-option
- v-for="option in aiportOptions"
- :key="option.value"
- :label="option.label"
- :value="option.value"
- />
- </el-select>
- </div>
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">当日行李量统计</div>
- <div class="dashboard-card-content">
- <div
- v-for="item in baggageCountItems"
- :key="item.title"
- class="baggage-count-item"
- >
- <div class="baggage-count-num">{{ item.num }}</div>
- <div class="baggage-count-title">{{ item.title }}</div>
- </div>
- </div>
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">当日行李目的地分布图</div>
- </div>
- <div class="dashboard-card-content">
- <MapCharts
- id="box-map"
- :option="boxMap"
- />
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">每日小时行李处理量 - 进港</div>
- </div>
- <div class="dashboard-card-content">
- <BarCharts
- id="inHour"
- :option="inHourDataOption"
- />
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">每日小时行李处理量 - 出港</div>
- </div>
- <div class="dashboard-card-content">
- <BarCharts
- id="outHour"
- :option="outHourDataOption"
- />
- </div>
- </div>
- <div class="dashboard-card">
- <div class="dashboard-card-wrapper">
- <div class="dashboard-card-title">每日小时行李处理量 - 中转</div>
- </div>
- <div class="dashboard-card-content">
- <BarCharts
- id="transHour"
- :option="transHourDataOption"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import CountBox from '@/components/CountBox/index.vue'
- import BarCharts from '@/layout/components/Echarts/commonChartsBar.vue'
- import MapCharts from '@/layout/components/Echarts/commonChartsChinaMap.vue'
- import VueSeamlessScroll from 'vue-seamless-scroll'
- import { Query } from '@/api/webApi'
- import { parseTime } from '@/utils'
- import { getAuthData } from '@/utils/validate'
- const defaultDate = parseTime(new Date(), '{y}-{m}-{d}')
- // const defaultDate = '2023-06-19'
- const barOption = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow',
- },
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true,
- },
- xAxis: {
- type: 'category',
- data: [],
- axisLabel: {
- color: '#8897BC',
- },
- axisTick: {
- alignWithLabel: true,
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- color: '#8897BC',
- },
- },
- series: [
- {
- data: [],
- type: 'bar',
- barWidth: '16px',
- },
- ],
- }
- export default {
- name: 'Dashboard',
- components: {
- CountBox,
- BarCharts,
- MapCharts,
- VueSeamlessScroll,
- },
- data() {
- return {
- loading: false,
- arrivalFlightCount: 0,
- departureFlightCount: 0,
- currentAirport: '',
- aiportOptions: [],
- companyData: [],
- customColor: '#478BE7',
- baggageCountItems: [
- {
- title: '行李总数',
- num: 0,
- },
- {
- title: '进港行李数',
- num: 0,
- },
- {
- title: '出港行李数',
- num: 0,
- },
- {
- title: '中转行李数',
- num: 0,
- },
- ],
- boxMap: {
- tooltip: {
- trigger: 'item',
- formatter: function (item) {
- if (item.data && item.data.index) {
- const html = `<div>
- <div>TOP ${item.data.index}</div>
- <div>${item.data.name} ${item.data.value}</div>
- </div>`
- return html
- } else {
- return '<div>暂无数据</div>'
- }
- },
- },
- legend: {
- show: false,
- },
- grid: {
- left: 0,
- right: 0,
- top: 0,
- bottom: 0,
- },
- visualMap: {
- type: 'continuous',
- text: ['高', '低'],
- min: 0,
- max: 20000,
- seriesIndex: [0, 2],
- dimension: 0,
- realtime: false,
- left: 0,
- bottom: '30%',
- itemWidth: 8,
- itemHeight: 93,
- calculable: true,
- inRange: {
- color: ['#869CBC', 'yellow'],
- symbolSize: [100, 100],
- },
- textStyle: {
- color: '#fff',
- },
- outOfRange: {
- color: ['orange'],
- symbolSize: [100, 100],
- },
- },
- toolbox: {
- show: false,
- },
- xAxis: {
- show: false,
- },
- yAxis: {
- show: false,
- },
- series: [
- {
- name: '行李数',
- type: 'map',
- mapType: 'china',
- // left: '100',
- // width: '40%',
- roam: 'move',
- mapValueCalculation: 'sum',
- zoom: 1,
- selectedMode: false,
- showLegendSymbol: false,
- left: '10%',
- top: '10%',
- width: '80%',
- label: {
- normal: {
- textStyle: {
- color: '#666666',
- },
- },
- emphasis: {
- textStyle: {
- color: '#234EA5',
- },
- },
- },
- itemStyle: {
- normal: {
- areaColor: '#fff',
- borderColor: '#666666',
- },
- emphasis: {
- areaColor: '#E5F39B',
- },
- },
- data: [],
- },
- ],
- },
- inHourDataOption: this._.cloneDeep(barOption),
- outHourDataOption: this._.cloneDeep(barOption),
- transHourDataOption: this._.cloneDeep(barOption),
- authId: null,
- queryId: null,
- }
- },
- computed: {
- defaultOption() {
- return {
- step: 0.5, // 数值越大速度滚动越快
- limitMoveNum: 2, // 开始无缝滚动的数据量 //this.fourDatata.length
- hoverStop: true, // 是否开启鼠标悬停stop
- direction: 1, // 0向下 1向上 2向左 3向右
- openWatch: true, // 开启数据实时监控刷新dom
- singleHeight: 0, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1
- singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3
- waitTime: 1000, // 单步运动停止的时间(默认值1000ms)
- }
- },
- },
- watch: {
- currentAirport(val) {
- if (val) {
- this.getAllData()
- }
- },
- },
- created() {
- this.inHourDataOption.series[0].color = '#3FC9D5'
- this.outHourDataOption.series[0].color = '#527CF5'
- this.transHourDataOption.series[0].color = '#F5C871'
- },
- mounted() {
- const { auth_id } = this.$route.meta
- if (auth_id) {
- const { arrs } = getAuthData(auth_id)
- if (arrs && arrs.length) {
- const obj = arrs[0]
- this.authId = obj.auth_id
- this.queryId = obj.queryTemplateID
- }
- }
- this.getAiportList()
- },
- methods: {
- // 航站列表
- async getAiportList() {
- this.loading = true
- try {
- let params = {
- serviceId: SERVICE_ID.AirportIds,
- dataContent: [],
- pageSize: 9999,
- }
- if (this.queryId) {
- params = {
- ...params,
- authId: this.authId,
- serviceId: this.queryId,
- }
- }
- const {
- code,
- returnData: { listValues },
- message,
- } = await Query(params)
- if (String(code) !== '0') {
- throw new Error(message || '失败')
- }
- this.aiportOptions = listValues.map(aiport => ({
- label: aiport.code3,
- value: aiport.code3,
- }))
- this.currentAirport = 'CAN'
- } catch (error) {
- console.error(error)
- }
- this.loading = false
- },
- // 当日数量和小时数量
- async getDateData(serviceId) {
- try {
- const {
- code,
- returnData: listValues,
- message,
- } = await Query({
- serviceId,
- dataContent: [
- {
- fd1: defaultDate,
- fd2: defaultDate,
- airport: this.currentAirport,
- },
- ],
- pageSize: 9999,
- })
- if (String(code) !== '0') {
- throw new Error(message || '失败')
- }
- return listValues
- } catch (error) {
- console.error(error)
- return []
- }
- },
- // 航司行李量排行
- async getCompanyData() {
- try {
- this.companyData = []
- const {
- code,
- returnData: listValues,
- message,
- } = await Query({
- serviceId: SERVICE_ID.dashboardCompanyData,
- dataContent: [
- {
- airport: this.currentAirport,
- fd1: defaultDate,
- fd2: defaultDate,
- },
- ],
- pageSize: 9999,
- })
- if (String(code) !== '0') {
- throw new Error(message || '失败')
- }
- const max = Math.max(...listValues.map(item => Number(item.bags)))
- this.companyData = listValues.map(item => ({
- name: item.iata_code,
- count: Number(item.bags),
- percentage: max ? (Number(item.bags) / max).toFixed(2) * 100 : 0,
- }))
- } catch (error) {
- console.error(error)
- }
- },
- // 当日行李分布
- async getMap() {
- try {
- const {
- code,
- returnData: listValues,
- message,
- } = await Query({
- serviceId: SERVICE_ID.dashboardMap,
- dataContent: [
- {
- airport: this.currentAirport,
- fd1: defaultDate,
- fd2: defaultDate,
- },
- ],
- pageSize: 9999,
- })
- if (String(code) !== '0') {
- this.boxMap.series[0].data = []
- throw new Error(message || '失败')
- }
- listValues.sort((a, b) => b.bags - a.bags)
- listValues.map((item, index) => {
- item.name = item.in_province
- item.value = item.bags
- item.index = index + 1
- })
- this.boxMap.series[0].data = listValues
- } catch (error) {
- console.error(error)
- }
- },
- async getAllData() {
- this.loading = true
- try {
- const serviceIdList = [
- SERVICE_ID.dashboardDateFlightData,
- SERVICE_ID.dashboardDateBaggageData,
- SERVICE_ID.dashboardHourBaggageIn,
- SERVICE_ID.dashboardHourBaggageOut,
- SERVICE_ID.dashboardHourBaggageTrans,
- ]
- const [
- [dateFlightData],
- [dateBaggageData],
- inHourData,
- outHourData,
- transHourData,
- ] = await Promise.all([
- ...serviceIdList.map(id => this.getDateData(id)),
- this.getCompanyData(),
- this.getMap(),
- ])
- this.arrivalFlightCount = Number(dateFlightData.flights_in)
- this.departureFlightCount = Number(dateFlightData.flights_out)
- this.baggageCountItems[0].num = Number(dateBaggageData.bags)
- this.baggageCountItems[1].num = Number(dateBaggageData.bags_in)
- this.baggageCountItems[2].num = Number(dateBaggageData.bags_out)
- this.baggageCountItems[3].num = Number(dateBaggageData.transfer_bags)
- const sortedInHoutData = this._.sortBy(inHourData, 'dat')
- const sortedOutHoutData = this._.sortBy(outHourData, 'dat')
- const sortedTransHoutData = this._.sortBy(transHourData, 'dat')
- this.inHourDataOption.xAxis.data = sortedInHoutData.reduce((prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
- }
- return prev
- }, [])
- this.inHourDataOption.series[0].data = sortedInHoutData.reduce(
- (prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(Number(curr.bags))
- }
- return prev
- },
- []
- )
- this.outHourDataOption.xAxis.data = sortedOutHoutData.reduce((prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
- }
- return prev
- }, [])
- this.outHourDataOption.series[0].data = sortedOutHoutData.reduce(
- (prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(Number(curr.bags))
- }
- return prev
- },
- []
- )
- this.transHourDataOption.xAxis.data = sortedTransHoutData.reduce(
- (prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
- }
- return prev
- },
- []
- )
- this.transHourDataOption.series[0].data = sortedTransHoutData.reduce(
- (prev, curr) => {
- if ((curr.dat ?? '') !== '') {
- prev.push(Number(curr.bags))
- }
- return prev
- },
- []
- )
- } catch (error) {
- console.error(error)
- }
- this.loading = false
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .dashboard {
- width: 100%;
- height: calc(100vh - 48px - 32px);
- padding: 16px 20px;
- background-color: #081821;
- color: #fff;
- &-scrollbar {
- margin-right: -20px;
- width: calc(100% + 20px);
- height: 100%;
- overflow-x: hidden;
- overflow-y: auto;
- }
- &-wrapper {
- width: 100%;
- height: 968px;
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- &-card {
- width: calc((100% - 16px * 2) / 3);
- height: calc((100% - 16px * 2) / 3);
- padding: 25px;
- display: flex;
- flex-direction: column;
- border: 1px solid #3a4456;
- background: linear-gradient(270deg, rgba(118, 142, 184, 0.25), transparent);
- position: relative;
- &::before {
- content: '';
- display: block;
- width: 0;
- height: 0;
- position: absolute;
- top: 0;
- left: 0;
- border: 12px solid #6d7d98;
- border-right-color: transparent;
- border-bottom-color: transparent;
- }
- &-wrapper {
- height: 0;
- flex: 1;
- &:not(:first-child) {
- margin-top: 25px;
- }
- }
- &-title {
- height: 40px;
- line-height: 16px;
- font-size: 16px;
- font-family: Helvetica, Microsoft YaHei;
- font-weight: bold;
- }
- &-content {
- height: calc(100% - 40px);
- }
- &:nth-child(1) {
- .dashboard-card-content {
- max-height: 64px;
- }
- }
- &:nth-child(3) {
- height: 40px;
- padding: 0 25px;
- &::before {
- display: none;
- }
- .dashboard-card-title {
- height: 38px;
- display: flex;
- justify-content: space-between;
- line-height: 38px;
- .el-select {
- width: 120px;
- ::v-deep .el-input__inner {
- border: none;
- background-color: transparent;
- font-size: 16px;
- font-family: Helvetica, Microsoft YaHei;
- font-weight: bold;
- color: #ffffff;
- }
- }
- }
- }
- &:nth-child(4) {
- height: calc((100% - 16px * 2) / 3 - 40px - 16px);
- }
- &:nth-child(2),
- &:nth-child(5) {
- height: calc((100% - 16px * 2) / 3 * 2 + 16px);
- }
- &:nth-child(4) {
- .dashboard-card-content {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .baggage-count-item {
- height: 50%;
- padding-left: 96px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- position: relative;
- font-family: Helvetica, Microsoft YaHei;
- font-weight: bold;
- .baggage-count-num {
- width: 120px;
- font-size: 36px;
- color: #f7c15a;
- }
- .baggage-count-title {
- font-size: 14px;
- }
- &::before {
- content: url('../../assets/analysis/ic.png');
- display: block;
- width: 72px;
- height: 72px;
- position: absolute;
- top: 50%;
- left: 0;
- transform: translate(0, -50%);
- }
- }
- }
- }
- &:nth-child(5) {
- background: transparent;
- border: none;
- &::before {
- display: none;
- }
- }
- }
- .scroll-table {
- height: 100%;
- overflow: hidden;
- .company-baggage-item {
- margin-top: 36px;
- display: flex;
- align-items: center;
- font-size: 14px;
- font-family: Helvetica;
- font-weight: bold;
- color: #ffffff;
- .company-progress {
- flex: 1;
- margin: 0 23px;
- }
- ::v-deep .progress {
- flex: 1;
- margin: 0 36px;
- .el-progress-bar {
- padding-right: 0;
- .el-progress-bar__outer {
- background-color: #534e75;
- }
- }
- .el-progress__text {
- display: none;
- }
- }
- }
- }
- }
- </style>
|