pointheat.vue
6.08 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<template>
<div class="heatmap-analysis">
<el-header height="70px">
<span class="asis-title">{{ asisName }} {{$t('asis.HeatMap')}}</span>
<span class="more-option-wrapper" @click="showCollapse">
<span class="more-option-text">{{$t('asis.moreOp')}}</span>
<i :class="moreOptVisible ? 'el-icon-arrow-down more-option-arrow' : 'el-icon-arrow-down more-option-arrow more-option-up'"></i>
</span>
</el-header>
<heatmap-option v-show="moreOptVisible" ref="init" :mallData="mallData" @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/flowheatMoreOption'
export default {
data() {
return {
moreOptVisible: false,
mallData: [],
asisName: '',
// kpiType: '', // 指标
// asisLevel: '',
// emitData: [],
propParams: {}
}
},
components: {
'heatmap-option': heatmapOption,
},
mounted() {
this.$router.push('/customer/flowheat/trafficheat')
this.getMall();
this.showCollapse();
},
methods: {
showCollapse() {
// 获取上面元素的高度
let headerH = '', titleH = '', collapseH = '', mt = '';
headerH = this.getStyleFn('.el-header', 'height');
titleH = this.getStyleFn('.analysis-wrapper .el-header', 'height');
if(this.moreOptVisible) {
this.moreOptVisible = false;
mt = headerH + titleH + 8 + 'px';
$('.heatmap-main').animate({ marginTop: mt })
} else {
this.moreOptVisible = true;
setTimeout(() => {
collapseH = this.getStyleFn('.analysis-option-wrapper', 'height');
mt = headerH + titleH + collapseH + 8 + 'px';
$('.heatmap-main').animate({ marginTop: mt });
}, 100);
}
},
getGatesFilterMall(mallStatus) {
this.$api.base.gate({
accountId: this.$cookie.get('accountId'),
status: 1,
// _t: Date.parse(new Date()) / 1000
})
.then(res => {
let result = res.data.data;
let titleName = '', refMallId = null,idArr = [];
let localMallId = window.sessionStorage.getItem('mallId');
localMallId ? Number(localMallId) : false;
result.forEach((item,index) => {
if(item.type == 4){
let mallObj = {};
mallObj.name = item.mall.name;
mallObj.id = item.mallId;
if(idArr.indexOf(mallObj.id) === -1 && mallStatus.indexOf(mallObj.id) != -1){
if(localMallId){
if(mallObj.id == localMallId){
titleName = mallObj.name;
}
}
this.mallData.push(mallObj);
idArr.push(item.mallId)
}
}
})
this.asisName = titleName ? titleName : this.mallData[0].name;
refMallId = titleName ? Number(localMallId) : this.mallData[0].id;
this.$refs.init.initAsis(refMallId);
})
.catch(err => {
})
},
getMall() {
this.$api.base.mall({
accountId: this.$cookie.get('accountId'),
status: 1,
// _t: Date.parse(new Date()) / 1000
}).then(res => {
let mallList = res.data.data,mallStatus = [];
mallList.forEach(item => {
mallStatus.push(item.id)
})
this.getGatesFilterMall(mallStatus);
// let titleName = '', refMallId = null;
// let localMallId = window.sessionStorage.getItem('mallId');
// localMallId ? Number(localMallId) : false;
// if(res.data.data.length >= 1) {
// res.data.data.forEach((item, index) => {
// this.mallData.push(item);
// if(localMallId) {
// if(item.id == localMallId) {
// titleName = item.name;
// }
// }
// });
// this.asisName = titleName ? titleName : res.data.data[0].name;
// refMallId = localMallId ? Number(localMallId) : res.data.data[0].id;
// this.$refs.init.initAsis(refMallId);
// }
})
},
initTab(data) {
switch (data.asis_date) {
case 'day':
this.$router.push('/customer/flowheat/trafficheat')
this.propParams = {
dateType: '/flowheat/trafficheat',
data: data
};
break;
default:
break;
}
},
reportHandler(emitData) {
this.asisName = emitData.asis_tit;
switch (emitData.asis_date) {
case 'day':
this.$router.push('/customer/flowheat/trafficheat');
this.propParams = {
dateType: '/flowheat/trafficheat',
data: emitData
};
break;
default:
break;
}
// setTimeout(() => {
// this.$refs.takeTime.refreshHandle(emitData);
// }, 200);
}
},
}
</script>
<style scoped>
.heatmap-analysis {
width: 100%;
}
</style>