baseAsis.vue
3.28 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
<template>
<div class="base-analysis">
<el-header height="70px">
<span class="asis-title">{{ asisName }} {{$t('asis.BasicAsis')}}</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>
<baseasis-option v-show="moreOptVisible" ref="init" @reportTime="reportHandler" @initData="initTab" @childByValue="childByValue"></baseasis-option>
<div class="element-main base-main">
<!-- ref="takeTime" -->
<router-view :propparam="propParams"></router-view>
</div>
</div>
</template>
<script>
import baseOption from '../common/option/basicAsisOption'
import { resolve } from 'q';
export default {
data() {
return {
moreOptVisible: false,
asisName: '',
asisLevel: '',
propParams: {}
}
},
components: {
'baseasis-option': baseOption,
},
created(){
},
mounted() {
this.getMallOpt();
this.showCollapse()
// $('.element-main').niceScroll();
},
methods: {
childByValue(childValue) {
this.animate('.base-main')
},
showCollapse() {
// 获取上面元素的高度
let headerH = '', titleH = '', collapseH = '', mt = '';
headerH = this.getStyleFn('.el-header', 'height');
titleH = this.getStyleFn('.analysis-wrapper .el-header', 'height');
// console.log(headerH,titleH)
if(this.moreOptVisible) {
this.moreOptVisible = false;
mt = headerH + titleH + 8 + 'px';
$('.base-main').animate({ marginTop: mt });
// console.log(headerH,titleH,mt)
} else {
this.moreOptVisible = true;
setTimeout(() => {
collapseH = this.getStyleFn('.analysis-option-wrapper', 'height');
mt = headerH + titleH + collapseH + 8 + 'px';
// console.log(headerH,titleH,collapseH,mt),
$('.base-main').animate({ marginTop: mt });
}, 100);
}
},
getMallOpt() {
this.getCommonMalls().then(resolveData => {
let {mallData,localMallId,titleName,multiMallId} = resolveData;
let refMallId = {
'mallId': localMallId,
'multiMallId': multiMallId
}
this.$refs.init.initAsis(refMallId,mallData);
},(rejectData) => {
})
},
initTab(data) {
this.asisName = data.asis_tit;
this.propParamHandler(data)
},
reportHandler(emitData) {
this.asisName = emitData.asis_tit;
this.propParamHandler(emitData)
},
propParamHandler(emitData) {
let result = this.routerJump('analysis','baseasis',emitData);
this.$router.push(result.router);
this.propParams = result.params;
},
},
}
</script>
<style scoped>
</style>