|
@@ -6,6 +6,7 @@
|
|
>
|
|
>
|
|
<StatisticsHeader
|
|
<StatisticsHeader
|
|
:title="`${chartsTitle}量统计`"
|
|
:title="`${chartsTitle}量统计`"
|
|
|
|
+ :extra-items="extraItems"
|
|
@getFormData="getFormData"
|
|
@getFormData="getFormData"
|
|
@export="exportHandler"
|
|
@export="exportHandler"
|
|
/>
|
|
/>
|
|
@@ -36,6 +37,10 @@ export default {
|
|
querySettings: {
|
|
querySettings: {
|
|
type: Object,
|
|
type: Object,
|
|
required: true
|
|
required: true
|
|
|
|
+ },
|
|
|
|
+ extraItems: {
|
|
|
|
+ type: Array,
|
|
|
|
+ default: () => []
|
|
}
|
|
}
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
@@ -211,7 +216,7 @@ export default {
|
|
deep: true
|
|
deep: true
|
|
},
|
|
},
|
|
'sidebar.expand'() {
|
|
'sidebar.expand'() {
|
|
- this.resizeHandler()
|
|
|
|
|
|
+ this.setChartHeight()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -219,81 +224,98 @@ export default {
|
|
this.myChart = this.$echarts.init(document.getElementById('chart'))
|
|
this.myChart = this.$echarts.init(document.getElementById('chart'))
|
|
this.myChart.setOption(this.options)
|
|
this.myChart.setOption(this.options)
|
|
// 监听页面缩放
|
|
// 监听页面缩放
|
|
- window.addEventListener('resize', this.setChartHeight)
|
|
|
|
- window.addEventListener('resize', this._.debounce(this.resizeHandler, this.debounceTime))
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.resizeHandler()
|
|
|
|
- })
|
|
|
|
|
|
+ this.debouncedChartHeightSetter = this._.debounce(this.setChartHeight, this.debounceTime)
|
|
|
|
+ window.addEventListener('resize', this.debouncedChartHeightSetter)
|
|
},
|
|
},
|
|
beforeDestroy() {
|
|
beforeDestroy() {
|
|
// 销毁实例和移除监听
|
|
// 销毁实例和移除监听
|
|
- window.removeEventListener('resize', this.setChartHeight)
|
|
|
|
|
|
+ window.removeEventListener('resize', this.debouncedChartHeightSetter)
|
|
if (this.myChart) {
|
|
if (this.myChart) {
|
|
this.myChart.dispose()
|
|
this.myChart.dispose()
|
|
- window.removeEventListener('resize', this.resizeHandler)
|
|
|
|
this.myChart = null
|
|
this.myChart = null
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- getFormData(data) {
|
|
|
|
- this.getData(data)
|
|
|
|
- },
|
|
|
|
- async getData(data) {
|
|
|
|
|
|
+ getFormData(formData) {
|
|
let id
|
|
let id
|
|
let params = []
|
|
let params = []
|
|
- if (data.range === '') {
|
|
|
|
|
|
+ if (formData.range === '') {
|
|
this.$message.warning('请先选择统计范围')
|
|
this.$message.warning('请先选择统计范围')
|
|
return
|
|
return
|
|
- } else if (data.range === '航线' && !data.airline) {
|
|
|
|
|
|
+ } else if (formData.range === '航线' && !formData.airline) {
|
|
this.$message.warning('请先选择航线')
|
|
this.$message.warning('请先选择航线')
|
|
return
|
|
return
|
|
- } else if (data.range === '航站' && !data.airport) {
|
|
|
|
|
|
+ } else if (formData.range === '航站' && !formData.airport) {
|
|
this.$message.warning('请先选择航站')
|
|
this.$message.warning('请先选择航站')
|
|
return
|
|
return
|
|
- } else if (data.range === '基地分公司' && !data.company) {
|
|
|
|
|
|
+ } else if (formData.range === '基地分公司' && !formData.company) {
|
|
this.$message.warning('请先选择基地分公司')
|
|
this.$message.warning('请先选择基地分公司')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (data.inOrOut === '') {
|
|
|
|
|
|
+ if (formData.inOrOut === '') {
|
|
this.$message.warning('请先选择进离港')
|
|
this.$message.warning('请先选择进离港')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (data.interval === '') {
|
|
|
|
|
|
+ if (formData.interval === '') {
|
|
this.$message.warning('请先选择统计时间维度')
|
|
this.$message.warning('请先选择统计时间维度')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (data.dateTime === '') {
|
|
|
|
|
|
+ if (formData.dateTime === '') {
|
|
this.$message.warning('请先选择统计时间范围')
|
|
this.$message.warning('请先选择统计时间范围')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (data.range === '基地分公司') {
|
|
|
|
- // id = DATACONTENT_ID.byAreaId
|
|
|
|
- id = this.querySettings.byAreaId
|
|
|
|
- params = [data.interval, data.company, data.inOrOut, data.dateTime[0], data.dateTime[1]]
|
|
|
|
- } else if (data.range !== '基地分公司' && data.range !== '') {
|
|
|
|
- // id = DATACONTENT_ID.byOtherId
|
|
|
|
- id = this.querySettings.byOtherId
|
|
|
|
- params = [data.interval, data.range, data.inOrOut, data.dateTime[0], data.dateTime[1]]
|
|
|
|
- if (data.airline === '' && data.airport === '' && data.terminal === '') {
|
|
|
|
|
|
+ const requiredMissing = this.extraItems.some(item => {
|
|
|
|
+ if (item.requiredWarning && !formData[item.prop]) {
|
|
|
|
+ this.$message.warning(item.requiredWarning)
|
|
|
|
+ return true
|
|
|
|
+ } else {
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ if (requiredMissing) {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (formData.range === '基地分公司') {
|
|
|
|
+ if (formData.flightType === 'withBaggage') {
|
|
|
|
+ id = this.querySettings.withBaggageByArea
|
|
|
|
+ } else if (formData.baggageType === 'notDEL') {
|
|
|
|
+ id = this.querySettings.notDelByArea
|
|
|
|
+ } else {
|
|
|
|
+ id = this.querySettings.byArea
|
|
|
|
+ }
|
|
|
|
+ params = [formData.interval, formData.company, formData.inOrOut, formData.dateTime[0], formData.dateTime[1]]
|
|
|
|
+ } else if (formData.range !== '基地分公司' && formData.range !== '') {
|
|
|
|
+ if (formData.flightType === 'withBaggage') {
|
|
|
|
+ id = this.querySettings.withBaggageByOther
|
|
|
|
+ } else if (formData.baggageType === 'notDEL') {
|
|
|
|
+ id = this.querySettings.notDelByOther
|
|
|
|
+ } else {
|
|
|
|
+ id = this.querySettings.byOther
|
|
|
|
+ }
|
|
|
|
+ params = [formData.interval, formData.range, formData.inOrOut, formData.dateTime[0], formData.dateTime[1]]
|
|
|
|
+ if (formData.airline === '' && formData.airport === '' && formData.terminal === '') {
|
|
params.splice(2, 0, '全部')
|
|
params.splice(2, 0, '全部')
|
|
}
|
|
}
|
|
- if (data.airline !== '') {
|
|
|
|
- params.splice(2, 0, data.airline)
|
|
|
|
|
|
+ if (formData.airline !== '') {
|
|
|
|
+ params.splice(2, 0, formData.airline)
|
|
}
|
|
}
|
|
- if (data.airport !== '') {
|
|
|
|
- params.splice(2, 0, data.airport)
|
|
|
|
|
|
+ if (formData.airport !== '') {
|
|
|
|
+ params.splice(2, 0, formData.airport)
|
|
}
|
|
}
|
|
- if (data.terminal !== '') {
|
|
|
|
- params.splice(2, 0, data.terminal)
|
|
|
|
|
|
+ if (formData.terminal !== '') {
|
|
|
|
+ params.splice(2, 0, formData.terminal)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ this.getChartsData(id, params)
|
|
|
|
+ },
|
|
|
|
+ async getChartsData(id, params) {
|
|
try {
|
|
try {
|
|
const {
|
|
const {
|
|
code,
|
|
code,
|
|
returnData: { listValues },
|
|
returnData: { listValues },
|
|
message
|
|
message
|
|
} = await Query({
|
|
} = await Query({
|
|
- id: id,
|
|
|
|
|
|
+ id,
|
|
dataContent: params
|
|
dataContent: params
|
|
})
|
|
})
|
|
if (Number(code) === 0) {
|
|
if (Number(code) === 0) {
|
|
@@ -302,13 +324,10 @@ export default {
|
|
const seriesData = []
|
|
const seriesData = []
|
|
for (let i = 0; i < listValues.length; i++) {
|
|
for (let i = 0; i < listValues.length; i++) {
|
|
xAxisData.push(listValues[i].A)
|
|
xAxisData.push(listValues[i].A)
|
|
- seriesData.push(listValues[i][this.querySettings.seriesKey])
|
|
|
|
|
|
+ seriesData.push(listValues[i].seriesData)
|
|
if (i > 0) {
|
|
if (i > 0) {
|
|
- if (listValues[i - 1][this.querySettings.seriesKey] > 0) {
|
|
|
|
- yAxisData.push(
|
|
|
|
- (listValues[i][this.querySettings.seriesKey] - listValues[i - 1][this.querySettings.seriesKey]) /
|
|
|
|
- listValues[i - 1][this.querySettings.seriesKey]
|
|
|
|
- )
|
|
|
|
|
|
+ if (listValues[i - 1].seriesData > 0) {
|
|
|
|
+ yAxisData.push((listValues[i].seriesData - listValues[i - 1].seriesData) / listValues[i - 1].seriesData)
|
|
} else {
|
|
} else {
|
|
yAxisData.push(0)
|
|
yAxisData.push(0)
|
|
}
|
|
}
|
|
@@ -324,7 +343,7 @@ export default {
|
|
this.options.yAxis[1].max = (Math.max(...yAxisData) + 0.1).toFixed(2)
|
|
this.options.yAxis[1].max = (Math.max(...yAxisData) + 0.1).toFixed(2)
|
|
this.hasChartData = true
|
|
this.hasChartData = true
|
|
} else {
|
|
} else {
|
|
- this.$message.error(message)
|
|
|
|
|
|
+ this.$message.error(message || '失败')
|
|
}
|
|
}
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.log('出错了', error.message || error)
|
|
console.log('出错了', error.message || error)
|
|
@@ -339,6 +358,9 @@ export default {
|
|
this.chartHeight = `calc(100vh - ${
|
|
this.chartHeight = `calc(100vh - ${
|
|
topBarHeight + headerBlankHeight + tabsWrapperHeight + headerHeight + footerBlankHeight
|
|
topBarHeight + headerBlankHeight + tabsWrapperHeight + headerHeight + footerBlankHeight
|
|
}px)`
|
|
}px)`
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.resizeHandler()
|
|
|
|
+ })
|
|
},
|
|
},
|
|
resizeHandler() {
|
|
resizeHandler() {
|
|
if (this.myChart) {
|
|
if (this.myChart) {
|