trafficasis.vue
2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
<div class="timeheat-analysis">
<el-header>
<span class="asis-title">{{ asisName }} {{$t('asis.dataReport')}}</span>
</el-header>
<timeheat-option ref="init" :mallData="mallData" @reportTime="reportHandler" @initData="initTab"></timeheat-option>
<div class="element-main timeheat-main" :style="{ marginTop: '185px' }">
<router-view :propparam="propParams"></router-view>
</div>
</div>
</template>
<script>
import timeheatOption from '../common/option/trafficasisOpt'
export default {
data() {
return {
mallData: [],
asisName: '',
propParams: {}
}
},
components: {
'timeheat-option': timeheatOption,
},
created() {
window.addEventListener('resize', () => {
try {
let domId = ['trafficOfMonth', 'detailData', 'customercountingMax' , 'customercountingMin' , 'TimeThermodynamic', 'weekdayOrEnd', 'faceGender', 'faceAge', 'regularCustomerLine' , 'regularCustomerDetailLine' , 'EachDayGenderNumLine', 'EachDayAgeNumBar'];
let timeHeatEChartsUtil = {};
domId.forEach((item,index) => {
timeHeatEChartsUtil[`chart${index}`] = $(`#${item}`)[0]
})
for(let k in timeHeatEChartsUtil) {
if(timeHeatEChartsUtil.hasOwnProperty(k) && timeHeatEChartsUtil[k] != undefined) {
timeHeatEChartsUtil[k] = this.$echarts.init(timeHeatEChartsUtil[k]);
var element = timeHeatEChartsUtil[k];
element.resize();
}
}
} catch (err) { }
})
},
mounted() {
this.getMallOpt();
},
methods: {
getMallOpt() {
this.getCommonMalls().then(resolveData => {
let {mallData,localMallId,titleName,multiMallId} = resolveData;
this.mallData = mallData;
this.asisName = titleName
this.$refs.init.initAsis(localMallId);
},(rejectData) => {
})
},
initTab(data) {
this.propParamHandler(data);
},
reportHandler(emitData) {
this.asisName = emitData.asis_tit;
this.propParamHandler(emitData);
},
propParamHandler(emitData) {
let result = this.routerJump('dataasis','trafficasis',emitData);
this.$router.push(result.router);
this.propParams = result.params;
},
},
}
</script>
<style scoped>
.timeheat-analysis {
width: 100%;
}
</style>