|
|
@ -132,16 +132,16 @@ export default { |
|
|
|
mounted() { |
|
|
|
setTimeout(() => { |
|
|
|
this.$nextTick(() => { |
|
|
|
var myChart = echarts.init(this.$refs.carStatisticsEchartBox); |
|
|
|
myChart.setOption(carStatistics); |
|
|
|
const myChart1 = echarts.init(this.$refs.carStatisticsEchartBox); |
|
|
|
myChart1.setOption(carStatistics); |
|
|
|
console.log("charts", carStatistics); |
|
|
|
|
|
|
|
var myChart = echarts.init(this.$refs.focusStatisticsEchartBox); |
|
|
|
myChart.setOption(focusStatistics); |
|
|
|
const myChart2 = echarts.init(this.$refs.focusStatisticsEchartBox); |
|
|
|
myChart2.setOption(focusStatistics); |
|
|
|
console.log("charts", focusStatistics); |
|
|
|
|
|
|
|
var myChart = echarts.init(this.$refs.otherStatisticsEchartBox); |
|
|
|
myChart.setOption(otherStatistics); |
|
|
|
const myChart3 = echarts.init(this.$refs.otherStatisticsEchartBox); |
|
|
|
myChart3.setOption(otherStatistics); |
|
|
|
console.log("charts", otherStatistics); |
|
|
|
}); |
|
|
|
}); |
|
|
|