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

<script>
import weatherOption from '../common/option/weatherMoreOption'
export default {
    data() {
        return {
            moreOptVisible: false,
            asisName: '',
            propParams: {}
        }
    },
    components: {
        'weather-option': weatherOption,
    },
    created() {
        window.addEventListener('resize', () => {
            try {
                let timeHeatEChartsUtil = {
                    chart1: $('#monthScatterChart')[0],
                    chart2: $('#yearScatterChart')[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()
    },
    methods: {
        childByValue(childValue) {
            this.animate('.weather-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';
                $('.weather-main').animate({ marginTop: mt });
            } else {
                this.moreOptVisible = true;
                setTimeout(() => {
                    collapseH = this.getStyleFn('.analysis-option-wrapper', 'height');
                    mt = headerH + titleH + collapseH + 8 + 'px';
                    $('.weather-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) {
            switch (data.asis_date) {
                case 'month':
                    this.$router.push('/analysis/weatherasis/monthly')
                    this.propParams = {
                        dateType: '/weatherasis/monthly',
                        data: data
                    };
                    break;
                case 'year':
                    this.$router.push('/analysis/weatherasis/yearly')
                    this.propParams = {
                        dateType: '/weatherasis/yearly',
                        data: data
                    };
                    break;
                default:
                    break;
            }
        },
        reportHandler(emitData) {
            this.asisName = emitData.asis_tit;
            switch (emitData.asis_date) {
                case 'month':
                    this.$router.push('/analysis/weatherasis/monthly')
                    this.propParams = {
                        dateType: '/weatherasis/monthly',
                        data: emitData
                    };
                    break;
                case 'year':
                    this.$router.push('/analysis/weatherasis/yearly')
                    this.propParams = {
                        dateType: '/weatherasis/yearly',
                        data: emitData
                    };
                    break;
                default:
                    break;
            }
            // setTimeout(() => {
            //     this.$refs.takeTime.refreshHandle(emitData);
            // }, 200);
        }
    }
}
</script>

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