heatmap.vue
2.4 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
78
79
80
<template>
<div class="heatmap-analysis">
<el-header>
<span class="asis-title">{{ asisName }} {{$t('asis.FloorHeatMap')}}</span>
</el-header>
<heatmap-option ref="init" @reportTime="reportHandler" @initData="initTab"></heatmap-option>
<div class="element-main heatmap-main">
<router-view :propparam="propParams"></router-view>
</div>
</div>
</template>
<script>
import heatmapOption from '../common/option/floorHeatmapMoreOption'
export default {
data() {
return {
asisName: '',
// kpiType: '', // 指标
// asisLevel: '',
// emitData: [],
propParams: {}
}
},
components: {
'heatmap-option': heatmapOption,
},
mounted() {
this.$router.push('/analysis/floorheatmap/floorheatmap')
this.getMall();
},
methods: {
getMall() {
this.getCommonMalls().then(resolveData => {
let {mallData,localMallId,titleName,multiMallId} = resolveData;
this.asisName = titleName
this.$refs.init.initAsis(localMallId,mallData);
},(rejectData) => {
})
},
initTab(data) {
switch (data.asis_date) {
case 'day':
this.$router.push('/analysis/floorheatmap/floorheatmap')
this.propParams = {
dateType: '/floorheatmap/floorheatmap',
data: data
};
break;
default:
break;
}
},
reportHandler(emitData) {
this.asisName = emitData.asis_tit;
switch (emitData.asis_date) {
case 'day':
this.$router.push('/analysis/floorheatmap/floorheatmap');
this.propParams = {
dateType: '/floorheatmap/floorheatmap',
data: emitData
};
break;
default:
break;
}
// setTimeout(() => {
// // console.log('reportHandle $refs:', this.$refs, emitData)
// this.$refs.takeTime.refreshHandle(emitData);
// }, 200);
}
},
}
</script>
<style scoped>
.heatmap-analysis {
width: 100%;
}
</style>