weekComp.vue 3.89 KB
<template>
    <div class="weekcomp-analysis">
        <el-header height="70px">
            <span class="asis-title">{{ asisName }}&nbsp;{{$t('asis.WeekComp')}}</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>
        <weekcomp-option v-show="moreOptVisible" ref="init" @reportTime="reportHandler" @initData="initTab" v-on:childByValue="childByValue"></weekcomp-option>
        <div class="element-main weekcomp-main">
            <router-view :propparam="propParams"></router-view>
        </div>
    </div>
</template>

<script>
import weekCompOption from '../common/option/weekCompOption'
export default {
    data() {
        return {
            moreOptVisible: false,
            mallData: [],
            asisName: '',
            asisLevel: '',
            propParams: {}
        }
    },
    created() {
        window.addEventListener('resize', () => {
            try {
                let timeHeatEChartsUtil = {
                    chart1: $('#wecompChart')[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();
        this.showCollapse()
    },
    components: {
        'weekcomp-option': weekCompOption,
    },
    methods: {
        childByValue(childValue) {
            this.animate('.weekcomp-main')
        },
        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';
                $('.weekcomp-main').animate({ marginTop: mt });
            } else {
                this.moreOptVisible = true;
                setTimeout(() => {
                    collapseH = this.getStyleFn('.analysis-option-wrapper', 'height');
                    mt = headerH + titleH + collapseH + 8 + 'px';
                    $('.weekcomp-main').animate({ marginTop: mt });
                }, 100);
            }
        },
        getMallOpt() {
            this.getCommonMalls().then(resolveData => {
                let {mallData,localMallId,titleName,multiMallId} = resolveData;
                this.asisName = titleName
                this.$refs.init.initAsis(localMallId,mallData);
            },(rejectData) => {
            })
        },
        initTab(data) {
            // setTimeout(() => {
            //     this.$refs.takeTime.refreshHandle(data);
            // }, 1000);
            this.$router.push('/analysis/weekComp/wecomp');
            this.propParams = {
                dateType: '/weekComp/wecomp',
                data: data
            };
        },
        reportHandler(emitData) {
            this.$router.push('/analysis/weekComp/wecomp');
            // setTimeout(() => {
            //     this.$refs.takeTime.refreshHandle(emitData);
            // }, 200);
            this.asisName = emitData.asis_tit;
            this.propParams = {
                dateType: '/weekComp/wecomp',
                data: emitData
            };
        }
    },
}
</script>


<style scoped>
    .weekcomp-analysis {
        width: 100%;
    }
</style>