heatmap.vue 4.41 KB
<template>
    <div class="heatmap-analysis">
        <el-header height="70px">
            <span class="asis-title">{{ asisName }} {{$t('asis.FloorHeatMap')}}</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/floorHeatmapMoreOption'
export default {
    data() {
        return {
            moreOptVisible: false,
            mallData: [],
            asisName: '',
            // kpiType: '',    // 指标
            // asisLevel: '',
            // emitData: [],
            propParams: {}
        }
    },
    components: {
        'heatmap-option': heatmapOption,
    },
    mounted() {
        this.$router.push('/customer/floorheat/floorheatmap')
        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);
            }
        },
        getMall() {
            this.$api.base.mall({
                accountId: this.$cookie.get('accountId'),
                status: 1,
                // _t: Date.parse(new Date()) / 1000
            }).then(res => {
                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/floorheat/floorheatmap')
                    this.propParams = {
                        dateType: '/floorheat/floorheatmap',
                        data: data
                    };
                    break;
                default:
                    break;
            }
        },
        reportHandler(emitData) {
            this.asisName = emitData.asis_tit;
            switch (emitData.asis_date) {
                case 'day':
                    this.$router.push('/customer/floorheat/floorheatmap');
                    this.propParams = {
                        dateType: '/floorheat/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>