|
@@ -1,10 +1,30 @@
|
|
|
<template>
|
|
|
- <div class="statstics-wrapper">
|
|
|
- <div ref="headerWrapper" class="statstics-header">
|
|
|
- <StatisticsHeader :title="`${chartsTitle}统计`" :custom-items="customFormItems" :items="formItems" :data.sync="formData" @getFormData="getFormData" @export="exportHandler" />
|
|
|
+ <div
|
|
|
+ v-loading="loading"
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ class="statstics-wrapper"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ ref="headerWrapper"
|
|
|
+ class="statstics-header"
|
|
|
+ >
|
|
|
+ <StatisticsHeader
|
|
|
+ :title="`${chartsTitle}统计`"
|
|
|
+ :custom-items="customFormItems"
|
|
|
+ :items="formItems"
|
|
|
+ :data.sync="formData"
|
|
|
+ @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>
|
|
@@ -23,26 +43,27 @@ export default {
|
|
|
props: {
|
|
|
chartsTitle: {
|
|
|
type: String,
|
|
|
- required: true
|
|
|
+ required: true,
|
|
|
},
|
|
|
querySettings: {
|
|
|
type: Object,
|
|
|
- required: true
|
|
|
+ required: true,
|
|
|
},
|
|
|
customFormItems: {
|
|
|
type: Array,
|
|
|
- default: () => []
|
|
|
+ default: () => [],
|
|
|
},
|
|
|
formItems: {
|
|
|
type: Array,
|
|
|
},
|
|
|
formData: {
|
|
|
type: Object,
|
|
|
- required: true
|
|
|
+ required: true,
|
|
|
},
|
|
|
},
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
+ loading: false,
|
|
|
myChart: null,
|
|
|
debounceTime: 300,
|
|
|
chartHeight: '70vh',
|
|
@@ -59,9 +80,9 @@ export default {
|
|
|
axisPointer: {
|
|
|
type: 'cross',
|
|
|
crossStyle: {
|
|
|
- color: '#999'
|
|
|
- }
|
|
|
- }
|
|
|
+ color: '#999',
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
legend: {
|
|
|
top: '5%',
|
|
@@ -74,37 +95,37 @@ export default {
|
|
|
data: [
|
|
|
this.chartsTitle.replace('量', '数量'),
|
|
|
// `${this.chartsTitle}量同比`,
|
|
|
- `${this.chartsTitle}环比`
|
|
|
+ `${this.chartsTitle}环比`,
|
|
|
],
|
|
|
textStyle: {
|
|
|
fontFamily: 'Helvetica, "Microsoft YaHei"',
|
|
|
- color: '#101116'
|
|
|
- }
|
|
|
+ color: '#101116',
|
|
|
+ },
|
|
|
},
|
|
|
grid: {
|
|
|
top: '15%',
|
|
|
left: '5%',
|
|
|
right: '5%',
|
|
|
- bottom: '5%'
|
|
|
+ bottom: '5%',
|
|
|
},
|
|
|
xAxis: {
|
|
|
data: [],
|
|
|
axisLine: {
|
|
|
show: true,
|
|
|
lineStyle: {
|
|
|
- color: '#000000'
|
|
|
- }
|
|
|
+ color: '#000000',
|
|
|
+ },
|
|
|
},
|
|
|
axisTick: {
|
|
|
- show: false // 隐藏X轴刻度
|
|
|
+ show: false, // 隐藏X轴刻度
|
|
|
},
|
|
|
axisLabel: {
|
|
|
fontFamily: 'Helvetica, "Microsoft YaHei"',
|
|
|
- color: '#101116'
|
|
|
+ color: '#101116',
|
|
|
},
|
|
|
axisPointer: {
|
|
|
- type: 'shadow'
|
|
|
- }
|
|
|
+ type: 'shadow',
|
|
|
+ },
|
|
|
},
|
|
|
yAxis: [
|
|
|
{
|
|
@@ -114,18 +135,18 @@ export default {
|
|
|
lineStyle: {
|
|
|
type: 'dashed',
|
|
|
color: '#B0B3C3',
|
|
|
- opacity: 0.5
|
|
|
- }
|
|
|
+ opacity: 0.5,
|
|
|
+ },
|
|
|
},
|
|
|
axisPointer: {
|
|
|
label: {
|
|
|
- formatter: ({ value }) => value.toFixed()
|
|
|
- }
|
|
|
+ formatter: ({ value }) => value.toFixed(),
|
|
|
+ },
|
|
|
},
|
|
|
axisLabel: {
|
|
|
fontFamily: 'Helvetica, "Microsoft YaHei"',
|
|
|
- color: '#101116'
|
|
|
- }
|
|
|
+ color: '#101116',
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
min: -0.3,
|
|
@@ -133,17 +154,17 @@ export default {
|
|
|
axisLabel: {
|
|
|
formatter: value => (value * 100).toFixed(2) + '%',
|
|
|
fontFamily: 'Helvetica, "Microsoft YaHei"',
|
|
|
- color: '#101116'
|
|
|
+ color: '#101116',
|
|
|
},
|
|
|
axisPointer: {
|
|
|
label: {
|
|
|
- formatter: ({ value }) => (value * 100).toFixed(2) + '%'
|
|
|
- }
|
|
|
+ formatter: ({ value }) => (value * 100).toFixed(2) + '%',
|
|
|
+ },
|
|
|
},
|
|
|
splitLine: {
|
|
|
- show: false
|
|
|
- }
|
|
|
- }
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ },
|
|
|
],
|
|
|
series: [
|
|
|
{
|
|
@@ -151,14 +172,14 @@ export default {
|
|
|
type: 'bar',
|
|
|
z: 2,
|
|
|
itemStyle: {
|
|
|
- color: '#6682B5'
|
|
|
+ color: '#6682B5',
|
|
|
},
|
|
|
barWidth: 40,
|
|
|
label: {
|
|
|
show: true,
|
|
|
- position: 'top'
|
|
|
+ position: 'top',
|
|
|
},
|
|
|
- data: []
|
|
|
+ data: [],
|
|
|
},
|
|
|
{
|
|
|
name: `${this.chartsTitle}同比`,
|
|
@@ -169,17 +190,17 @@ export default {
|
|
|
itemStyle: {
|
|
|
color: '#F2B849',
|
|
|
borderColor: '#ffffff',
|
|
|
- borderWidth: 4
|
|
|
+ borderWidth: 4,
|
|
|
},
|
|
|
lineStyle: {
|
|
|
width: 4,
|
|
|
- color: '#F2B849'
|
|
|
+ color: '#F2B849',
|
|
|
},
|
|
|
symbolSize: 32,
|
|
|
tooltip: {
|
|
|
- valueFormatter: value => (value * 100).toFixed(2) + '%'
|
|
|
+ valueFormatter: value => (value * 100).toFixed(2) + '%',
|
|
|
},
|
|
|
- data: []
|
|
|
+ data: [],
|
|
|
},
|
|
|
{
|
|
|
name: `${this.chartsTitle}环比`,
|
|
@@ -190,40 +211,40 @@ export default {
|
|
|
itemStyle: {
|
|
|
color: '#E33D3D',
|
|
|
borderColor: '#ffffff',
|
|
|
- borderWidth: 4
|
|
|
+ borderWidth: 4,
|
|
|
},
|
|
|
lineStyle: {
|
|
|
width: 4,
|
|
|
- color: '#E33D3D'
|
|
|
+ color: '#E33D3D',
|
|
|
},
|
|
|
symbolSize: 32,
|
|
|
tooltip: {
|
|
|
- valueFormatter: value => (value * 100).toFixed(2) + '%'
|
|
|
+ valueFormatter: value => (value * 100).toFixed(2) + '%',
|
|
|
},
|
|
|
- data: []
|
|
|
- }
|
|
|
- ]
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
- admin: {}
|
|
|
+ admin: {},
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters(['sidebar'])
|
|
|
+ ...mapGetters(['sidebar']),
|
|
|
},
|
|
|
watch: {
|
|
|
// 监听数据变化 重绘图形
|
|
|
options: {
|
|
|
- handler (obj) {
|
|
|
+ handler(obj) {
|
|
|
this.myChart.setOption(obj)
|
|
|
this.resizeHandler()
|
|
|
},
|
|
|
- deep: true
|
|
|
+ deep: true,
|
|
|
},
|
|
|
- 'sidebar.expand' () {
|
|
|
+ 'sidebar.expand'() {
|
|
|
this.setChartHeight()
|
|
|
},
|
|
|
querySettings: {
|
|
|
- handler ({ seriesKey, filters, xAxisKey }) {
|
|
|
+ handler({ seriesKey, filters, xAxisKey }) {
|
|
|
if (seriesKey) {
|
|
|
this.seriesKey = seriesKey
|
|
|
}
|
|
@@ -235,18 +256,21 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
deep: true,
|
|
|
- immediate: true
|
|
|
- }
|
|
|
+ immediate: true,
|
|
|
+ },
|
|
|
},
|
|
|
- mounted () {
|
|
|
+ mounted() {
|
|
|
this.setChartHeight()
|
|
|
this.myChart = this.$echarts.init(document.getElementById('chart'))
|
|
|
this.myChart.setOption(this.options)
|
|
|
// 监听页面缩放
|
|
|
- this.debouncedChartHeightSetter = this._.debounce(this.setChartHeight, this.debounceTime)
|
|
|
+ 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 +279,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- resetDatas () {
|
|
|
+ resetDatas() {
|
|
|
this.hasChartData = false
|
|
|
this.options.yAxis[0].max = 60000
|
|
|
this.options.xAxis.data = []
|
|
@@ -264,15 +288,15 @@ export default {
|
|
|
this.options.yAxis[1].min = -0.3
|
|
|
this.options.yAxis[1].max = 0.5
|
|
|
},
|
|
|
- getFormData (formData) {
|
|
|
+ getFormData(formData) {
|
|
|
this.resetDatas()
|
|
|
|
|
|
let params = {}
|
|
|
- params = JSON.parse(JSON.stringify(formData));
|
|
|
+ params = JSON.parse(JSON.stringify(formData))
|
|
|
params.fd1 = formData.dateTime[0]
|
|
|
params.fd2 = formData.dateTime[1]
|
|
|
delete params.dateTime
|
|
|
- this.admin = JSON.parse(JSON.stringify(params));
|
|
|
+ this.admin = JSON.parse(JSON.stringify(params))
|
|
|
delete params.timedim
|
|
|
this.getSingleChartsData(this.querySettings.serviceId, params)
|
|
|
// if (formData.passengerType.length) {
|
|
@@ -291,45 +315,52 @@ export default {
|
|
|
// this.getSingleChartsData(id, params)
|
|
|
// }
|
|
|
},
|
|
|
- async getMultipleChartsData (id, paramsList) {
|
|
|
+ async getMultipleChartsData(id, paramsList) {
|
|
|
+ this.loading = true
|
|
|
try {
|
|
|
- const listValuesArray = await Promise.all(paramsList.map(params => this.getChartsData(id, params)))
|
|
|
- const listValues = listValuesArray.reduce((preValues, currentValues) => {
|
|
|
- currentValues.forEach(value => {
|
|
|
- const preValue = preValues.find(preValue => preValue.A === value.A)
|
|
|
- if (preValue) {
|
|
|
- preValue[this.seriesKey] += value[this.seriesKey]
|
|
|
- } else {
|
|
|
- preValues.push({
|
|
|
- A: value.A,
|
|
|
- [this.seriesKey]: value[this.seriesKey]
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
- return preValues
|
|
|
- }, [])
|
|
|
+ const listValuesArray = await Promise.all(
|
|
|
+ paramsList.map(params => this.getChartsData(id, params))
|
|
|
+ )
|
|
|
+ const listValues = listValuesArray.reduce(
|
|
|
+ (preValues, currentValues) => {
|
|
|
+ currentValues.forEach(value => {
|
|
|
+ const preValue = preValues.find(
|
|
|
+ preValue => preValue.A === value.A
|
|
|
+ )
|
|
|
+ if (preValue) {
|
|
|
+ preValue[this.seriesKey] += value[this.seriesKey]
|
|
|
+ } else {
|
|
|
+ preValues.push({
|
|
|
+ A: value.A,
|
|
|
+ [this.seriesKey]: value[this.seriesKey],
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ return preValues
|
|
|
+ },
|
|
|
+ []
|
|
|
+ )
|
|
|
this.setChartsData(this._.sortBy(listValues, 'A'))
|
|
|
} catch (error) {
|
|
|
this.$message.error(error.message)
|
|
|
}
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
- async getSingleChartsData (id, params) {
|
|
|
+ async getSingleChartsData(id, params) {
|
|
|
+ this.loading = true
|
|
|
try {
|
|
|
const listValues = await this.getChartsData(id, params)
|
|
|
this.setChartsData(listValues)
|
|
|
} catch (error) {
|
|
|
this.$message.error(error.message)
|
|
|
}
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
- async getChartsData (serviceId, params) {
|
|
|
+ async getChartsData(serviceId, params) {
|
|
|
try {
|
|
|
- const {
|
|
|
- code,
|
|
|
- returnData,
|
|
|
- message
|
|
|
- } = await TempQuery({
|
|
|
+ const { code, returnData, message } = await TempQuery({
|
|
|
serviceId,
|
|
|
- dataContent: [params]
|
|
|
+ dataContent: [params],
|
|
|
})
|
|
|
if (Number(code) === 0) {
|
|
|
return returnData.listValues || returnData
|
|
@@ -340,7 +371,7 @@ export default {
|
|
|
return Promise.reject(error.message || '失败')
|
|
|
}
|
|
|
},
|
|
|
- setChartsData (listValues) {
|
|
|
+ setChartsData(listValues) {
|
|
|
const xAxisData = []
|
|
|
const yAxisData = [0]
|
|
|
const seriesDatas = []
|
|
@@ -367,11 +398,9 @@ export default {
|
|
|
this.seriesKey = 'out_num'
|
|
|
} else if (this.admin.io === '中转') {
|
|
|
this.seriesKey = 'trans_num'
|
|
|
- }
|
|
|
- else if (this.admin.timedim === '正常') {
|
|
|
+ } else if (this.admin.timedim === '正常') {
|
|
|
this.seriesKey = 'bag_num'
|
|
|
- }
|
|
|
- else if (this.admin.timedim === '异常') {
|
|
|
+ } else if (this.admin.timedim === '异常') {
|
|
|
this.seriesKey = 'exception_num'
|
|
|
}
|
|
|
for (let i = 0; i < filteredList.length; i++) {
|
|
@@ -380,8 +409,9 @@ export default {
|
|
|
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][this.seriesKey] -
|
|
|
+ filteredList[i - 1][this.seriesKey]) /
|
|
|
+ filteredList[i - 1][this.seriesKey]
|
|
|
)
|
|
|
} else {
|
|
|
yAxisData.push(0)
|
|
@@ -399,24 +429,29 @@ 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
|
|
@@ -429,10 +464,18 @@ export default {
|
|
|
// $a.click()
|
|
|
|
|
|
// 生成表格数据
|
|
|
- const xlsxDatas = [['时间', this.chartsTitle.replace('量', '数量'), `${this.chartsTitle}环比`]]
|
|
|
+ const xlsxDatas = [
|
|
|
+ [
|
|
|
+ '时间',
|
|
|
+ this.chartsTitle.replace('量', '数量'),
|
|
|
+ `${this.chartsTitle}环比`,
|
|
|
+ ],
|
|
|
+ ]
|
|
|
const transposition = this.tableData[0].map((col, colIndex) => {
|
|
|
return this.tableData.map((row, rowIndex) => {
|
|
|
- return rowIndex === 2 ? (row[colIndex] * 100).toFixed(2) + '%' : row[colIndex]
|
|
|
+ return rowIndex === 2
|
|
|
+ ? (row[colIndex] * 100).toFixed(2) + '%'
|
|
|
+ : row[colIndex]
|
|
|
})
|
|
|
})
|
|
|
xlsxDatas.push(...transposition)
|
|
@@ -441,17 +484,20 @@ export default {
|
|
|
const summaryRow = ['合计']
|
|
|
const colNum = xlsxDatas[0].length
|
|
|
for (let colIndex = 1; colIndex < colNum; colIndex++) {
|
|
|
- summaryRow[colIndex] = xlsxDatas.reduce((pre, currentRow, rowIndex) => {
|
|
|
- if (colIndex === 1) {
|
|
|
- if (rowIndex === 0) {
|
|
|
- return 0
|
|
|
+ summaryRow[colIndex] = xlsxDatas.reduce(
|
|
|
+ (pre, currentRow, rowIndex) => {
|
|
|
+ if (colIndex === 1) {
|
|
|
+ if (rowIndex === 0) {
|
|
|
+ return 0
|
|
|
+ } else {
|
|
|
+ return pre + currentRow[colIndex]
|
|
|
+ }
|
|
|
} else {
|
|
|
- return pre + currentRow[colIndex]
|
|
|
+ return pre
|
|
|
}
|
|
|
- } else {
|
|
|
- return pre
|
|
|
- }
|
|
|
- }, '')
|
|
|
+ },
|
|
|
+ ''
|
|
|
+ )
|
|
|
}
|
|
|
xlsxDatas.push(summaryRow)
|
|
|
}
|
|
@@ -471,7 +517,10 @@ export default {
|
|
|
}, 0)
|
|
|
)
|
|
|
)
|
|
|
- if ((!columnWidths[columnIndex] && cellWidth > 0) || cellWidth > columnWidths[columnIndex]) {
|
|
|
+ if (
|
|
|
+ (!columnWidths[columnIndex] && cellWidth > 0) ||
|
|
|
+ cellWidth > columnWidths[columnIndex]
|
|
|
+ ) {
|
|
|
columnWidths[columnIndex] = cellWidth
|
|
|
}
|
|
|
})
|
|
@@ -480,14 +529,14 @@ export default {
|
|
|
const sheet = XLSX.utils.aoa_to_sheet(xlsxDatas)
|
|
|
// 添加列宽度
|
|
|
sheet['!cols'] = columnWidths.map(width => ({
|
|
|
- wch: width + 2
|
|
|
+ wch: width + 2,
|
|
|
}))
|
|
|
// 样式
|
|
|
const borderStyle = {
|
|
|
style: 'medium',
|
|
|
color: {
|
|
|
- rgb: 'FFFFFF'
|
|
|
- }
|
|
|
+ rgb: 'FFFFFF',
|
|
|
+ },
|
|
|
}
|
|
|
const reg = /^[A-Z]+([\d]+$)/
|
|
|
for (const key in sheet) {
|
|
@@ -498,8 +547,8 @@ export default {
|
|
|
alignment: {
|
|
|
horizontal: 'center',
|
|
|
vertical: 'center',
|
|
|
- wrapText: true
|
|
|
- }
|
|
|
+ wrapText: true,
|
|
|
+ },
|
|
|
}
|
|
|
if (Number(rowIndex) === 1) {
|
|
|
cellStyle = {
|
|
@@ -508,18 +557,18 @@ export default {
|
|
|
top: borderStyle,
|
|
|
right: borderStyle,
|
|
|
bottom: borderStyle,
|
|
|
- left: borderStyle
|
|
|
+ left: borderStyle,
|
|
|
},
|
|
|
font: {
|
|
|
color: {
|
|
|
- rgb: 'FFFFFF'
|
|
|
- }
|
|
|
+ rgb: 'FFFFFF',
|
|
|
+ },
|
|
|
},
|
|
|
fill: {
|
|
|
fgColor: {
|
|
|
- rgb: '3366FF'
|
|
|
- }
|
|
|
- }
|
|
|
+ rgb: '3366FF',
|
|
|
+ },
|
|
|
+ },
|
|
|
}
|
|
|
} else {
|
|
|
cellStyle.alignment.horizontal = 'left'
|
|
@@ -534,13 +583,16 @@ export default {
|
|
|
bookType: 'xlsx',
|
|
|
bookSST: true,
|
|
|
type: 'buffer',
|
|
|
- cellStyles: true
|
|
|
+ cellStyles: true,
|
|
|
})
|
|
|
// 下载表格
|
|
|
const fileName = `${this.chartsTitle}统计-${this.params.join('-')}.xlsx`
|
|
|
- FileSaver.saveAs(new Blob([tableWrite], { type: 'application/octet-stream' }), fileName)
|
|
|
- }
|
|
|
- }
|
|
|
+ FileSaver.saveAs(
|
|
|
+ new Blob([tableWrite], { type: 'application/octet-stream' }),
|
|
|
+ fileName
|
|
|
+ )
|
|
|
+ },
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
|