zoneDirect.vue
1.78 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
<template>
<div class="zoneDirect-analysis">
<el-header>
<span class="asis-title">{{ asisName }} {{ $t('asis.ZoneTrafficDirection') }}</span>
</el-header>
<zone-direct-option ref="init" :mallData="mallData" @reportTime="reportHandler" @initData="initTab"></zone-direct-option>
<div class="element-main base-main" style="margin-top: 114px">
<!-- ref="takeTime" -->
<router-view :propparam="propParams"></router-view>
</div>
</div>
</template>
<script>
import zoneDirctOption from '../common/option/zoneDirectOption'
export default {
components: {
'zone-direct-option': zoneDirctOption
},
data () {
return {
asisName: '',
propParams: {},
mallData: []
}
},
created() {
this.getMallOpt();
},
mounted() {
},
methods: {
getMallOpt() {
let param = {
accountId: this.$cookie.get('accountId'),
status: 1,
}
this.zoneFilterMall(param,4).then((resolveData) => {
let {mallData,localMallId,titleName} = resolveData
this.mallData = mallData
this.asisName = titleName
this.$refs.init.initAsis(localMallId === '' ? null : Number(localMallId))
},(rejectData) => {
console.log(rejectData)
})
},
initTab(data) {
this.$router.push('/behavior/zonedirection/zonegraph')
this.propParams = {
dateType: '/zonedirection/zonegraph',
data: data
}
},
reportHandler(emitData) {
this.asisName = emitData.asis_tit
this.$router.push('/behavior/zonedirection/zonegraph')
this.propParams = {
dateType: '/zonedirection/zonegraph',
data: emitData
}
}
},
}
</script>
<style scoped>
.zoneDirect-analysis {
width: 100%;
height: calc(100% - 114px);
}
</style>