|
@@ -1,22 +1,10 @@
|
|
|
<template>
|
|
|
<div class="statstics-wrapper">
|
|
|
- <div
|
|
|
- ref="headerWrapper"
|
|
|
- class="statstics-header"
|
|
|
- >
|
|
|
- <StatisticsHeader
|
|
|
- :title="`${chartsTitle}统计`"
|
|
|
- :custom-items="customFormItems"
|
|
|
- @getFormData="getFormData"
|
|
|
- @export="exportHandler"
|
|
|
- />
|
|
|
+ <div ref="headerWrapper" class="statstics-header">
|
|
|
+ <StatisticsHeader :title="`${chartsTitle}统计`" :custom-items="customFormItems" @getFormData="getFormData" @export="exportHandler" />
|
|
|
</div>
|
|
|
<div class="statstics-content">
|
|
|
- <div
|
|
|
- id="chart"
|
|
|
- class="statistics-chart"
|
|
|
- :style="{ height: chartHeight }"
|
|
|
- />
|
|
|
+ <div id="chart" class="statistics-chart" :style="{ height: chartHeight }" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -25,6 +13,7 @@
|
|
|
import StatisticsHeader from './statisticsHeader.vue'
|
|
|
import { TempQuery } from '@/api/temp'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
+import { Query } from '@/api/webApi'
|
|
|
import * as XLSX from 'xlsx'
|
|
|
import XLSX_STYLE from 'xlsx-style'
|
|
|
import FileSaver from 'file-saver'
|
|
@@ -37,6 +26,9 @@ export default {
|
|
|
type: String,
|
|
|
required: true
|
|
|
},
|
|
|
+ chartsKey: {
|
|
|
+ type: String
|
|
|
+ },
|
|
|
querySettings: {
|
|
|
type: Object,
|
|
|
required: true
|
|
@@ -46,7 +38,7 @@ export default {
|
|
|
default: () => []
|
|
|
}
|
|
|
},
|
|
|
- data() {
|
|
|
+ data () {
|
|
|
return {
|
|
|
myChart: null,
|
|
|
debounceTime: 300,
|
|
@@ -216,17 +208,17 @@ export default {
|
|
|
watch: {
|
|
|
// 监听数据变化 重绘图形
|
|
|
options: {
|
|
|
- handler(obj) {
|
|
|
+ handler (obj) {
|
|
|
this.myChart.setOption(obj)
|
|
|
this.resizeHandler()
|
|
|
},
|
|
|
deep: true
|
|
|
},
|
|
|
- 'sidebar.expand'() {
|
|
|
+ 'sidebar.expand' () {
|
|
|
this.setChartHeight()
|
|
|
},
|
|
|
querySettings: {
|
|
|
- handler({ seriesKey, filters }) {
|
|
|
+ handler ({ seriesKey, filters }) {
|
|
|
if (seriesKey) {
|
|
|
this.seriesKey = seriesKey
|
|
|
}
|
|
@@ -238,7 +230,7 @@ export default {
|
|
|
immediate: true
|
|
|
}
|
|
|
},
|
|
|
- mounted() {
|
|
|
+ mounted () {
|
|
|
this.setChartHeight()
|
|
|
this.myChart = this.$echarts.init(document.getElementById('chart'))
|
|
|
this.myChart.setOption(this.options)
|
|
@@ -246,7 +238,7 @@ export default {
|
|
|
this.debouncedChartHeightSetter = this._.debounce(this.setChartHeight, this.debounceTime)
|
|
|
window.addEventListener('resize', this.debouncedChartHeightSetter)
|
|
|
},
|
|
|
- beforeDestroy() {
|
|
|
+ beforeDestroy () {
|
|
|
// 销毁实例和移除监听
|
|
|
window.removeEventListener('resize', this.debouncedChartHeightSetter)
|
|
|
if (this.myChart) {
|
|
@@ -255,7 +247,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- resetDatas() {
|
|
|
+ resetDatas () {
|
|
|
this.hasChartData = false
|
|
|
this.options.yAxis[0].max = 60000
|
|
|
this.options.xAxis.data = []
|
|
@@ -264,9 +256,42 @@ export default {
|
|
|
this.options.yAxis[1].min = -0.3
|
|
|
this.options.yAxis[1].max = 0.5
|
|
|
},
|
|
|
- getFormData(formData) {
|
|
|
+ async getNewChartsData (paramsObj) {
|
|
|
+ const params = {
|
|
|
+ serviceId: SERVICE_ID.baggageCheckNew,
|
|
|
+ dataContent: { ...paramsObj },
|
|
|
+ event: '0'
|
|
|
+ }
|
|
|
+ const { code, returnData } = await Query({ ...params })
|
|
|
+ if (code == 0 && returnData?.length) this.setChartsData([...returnData])
|
|
|
+ },
|
|
|
+ getFormData (formData) {
|
|
|
this.resetDatas()
|
|
|
-
|
|
|
+ if (this.chartsKey == 'CheckInBaggageCharts') {
|
|
|
+ const { range, interval, airport, airline, dateTime, passengerType, inOrOut, area, terminal } = formData
|
|
|
+ const params = {
|
|
|
+ scope: range,
|
|
|
+ iotype: inOrOut == '全部' ? null : inOrOut,
|
|
|
+ location: airport || airline || terminal || area,
|
|
|
+ td: interval,
|
|
|
+ fd1: dateTime[0],
|
|
|
+ fd2: dateTime[1],
|
|
|
+ checktype: passengerType[0]
|
|
|
+ }
|
|
|
+ if (Array.isArray(params.location)) {
|
|
|
+ params.location = params.location.join(',')
|
|
|
+ }
|
|
|
+ for (const key in params) {
|
|
|
+ if (Object.hasOwnProperty.call(params, key)) {
|
|
|
+ const element = params[key];
|
|
|
+ if (!element) {
|
|
|
+ params[key] = null
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.getNewChartsData(params)
|
|
|
+ return
|
|
|
+ }
|
|
|
let id
|
|
|
let params = []
|
|
|
if (formData.range === '基地分公司') {
|
|
@@ -317,7 +342,7 @@ export default {
|
|
|
this.getSingleChartsData(id, params)
|
|
|
}
|
|
|
},
|
|
|
- async getMultipleChartsData(id, paramsList) {
|
|
|
+ async getMultipleChartsData (id, paramsList) {
|
|
|
try {
|
|
|
const listValuesArray = await Promise.all(paramsList.map(params => this.getChartsData(id, params)))
|
|
|
const listValues = listValuesArray.reduce((preValues, currentValues) => {
|
|
@@ -339,7 +364,7 @@ export default {
|
|
|
this.$message.error(error.message)
|
|
|
}
|
|
|
},
|
|
|
- async getSingleChartsData(id, params) {
|
|
|
+ async getSingleChartsData (id, params) {
|
|
|
try {
|
|
|
const listValues = await this.getChartsData(id, params)
|
|
|
this.setChartsData(listValues)
|
|
@@ -347,7 +372,7 @@ export default {
|
|
|
this.$message.error(error.message)
|
|
|
}
|
|
|
},
|
|
|
- async getChartsData(id, params) {
|
|
|
+ async getChartsData (id, params) {
|
|
|
try {
|
|
|
const {
|
|
|
code,
|
|
@@ -366,7 +391,7 @@ export default {
|
|
|
return Promise.reject(error.message || '失败')
|
|
|
}
|
|
|
},
|
|
|
- setChartsData(listValues) {
|
|
|
+ setChartsData (listValues) {
|
|
|
const xAxisData = []
|
|
|
const yAxisData = [0]
|
|
|
const seriesDatas = []
|
|
@@ -384,13 +409,13 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
for (let i = 0; i < filteredList.length; i++) {
|
|
|
- xAxisData.push(filteredList[i].A)
|
|
|
+ xAxisData.push(filteredList[i].A || filteredList[i].fd)
|
|
|
seriesDatas.push(filteredList[i][this.seriesKey])
|
|
|
if (i > 0) {
|
|
|
if (filteredList[i - 1][this.seriesKey] > 0) {
|
|
|
yAxisData.push(
|
|
|
(filteredList[i][this.seriesKey] - filteredList[i - 1][this.seriesKey]) /
|
|
|
- filteredList[i - 1][this.seriesKey]
|
|
|
+ filteredList[i - 1][this.seriesKey]
|
|
|
)
|
|
|
} else {
|
|
|
yAxisData.push(0)
|
|
@@ -408,25 +433,24 @@ export default {
|
|
|
this.tableData = [xAxisData, seriesDatas, yAxisData]
|
|
|
this.hasChartData = true
|
|
|
},
|
|
|
- setChartHeight() {
|
|
|
+ setChartHeight () {
|
|
|
const topBarHeight = 80
|
|
|
const headerBlankHeight = 24
|
|
|
const tabsWrapperHeight = 62
|
|
|
const headerHeight = this.$refs['headerWrapper'].offsetHeight
|
|
|
const footerBlankHeight = 24
|
|
|
- this.chartHeight = `calc(100vh - ${
|
|
|
- topBarHeight + headerBlankHeight + tabsWrapperHeight + headerHeight + footerBlankHeight
|
|
|
- }px)`
|
|
|
+ this.chartHeight = `calc(100vh - ${topBarHeight + headerBlankHeight + tabsWrapperHeight + headerHeight + footerBlankHeight
|
|
|
+ }px)`
|
|
|
this.$nextTick(() => {
|
|
|
this.resizeHandler()
|
|
|
})
|
|
|
},
|
|
|
- resizeHandler() {
|
|
|
+ resizeHandler () {
|
|
|
if (this.myChart) {
|
|
|
this.myChart.resize()
|
|
|
}
|
|
|
},
|
|
|
- exportHandler() {
|
|
|
+ exportHandler () {
|
|
|
if (!this.hasChartData) {
|
|
|
this.$message.warning('请查询后再进行导出')
|
|
|
return
|