index.vue 2.29 KB
<template>
  <div class="base-analysis">
    <el-header>
      <span class="asis-title">{{ asisName }}&nbsp;{{$t('echartsTitle.competitivePassengerFlowData')}}</span>
    </el-header>
    <baseasis-option ref="init" @reportTime="reportHandler" @initData="initTab"/>
    <div class="element-main base-main">
      <contentTemplate :propparam="propParams"></contentTemplate>
    </div>
  </div>
</template>

<script>
  import baseOption from '../common/option/passengerFlowDataOption.vue'
  import contentTemplate from'./content.vue'
  export default {
    data() {
      return {
        asisName: '',
        asisLevel: '',
        propParams: {}
      }
    },
    components: {
      'baseasis-option': baseOption,
      'contentTemplate':contentTemplate
    },
    watch: {
      propParams: {
        handler(newVal){

        },
        immediate: true,
        deep:true
      }
    },
    mounted() {
      this.getMallOpt();
    },
    methods: {
      initTab(data) {
        this.asisName = data.asis_tit;
        this.propParamHandler(data)
      },
      getMallOpt() {
        this.$api.businessAnalysisApi.getMalls({accountId: this.$cookie.get('accountId')}).then(res=>{
          console.log(res.data)
          if(res.data.data && res.data.data.length>0){
              let refMallId = {
                  'mallId': res.data.data[0].id,
                }
              this.$refs.init.initAsis(refMallId, res.data.data);
          }
        })
        // this.getCommonMalls().then(resolveData => {
        //   let {
        //     mallData,
        //     localMallId,
        //     titleName,
        //     multiMallId
        //   } = resolveData;
        //   let refMallId = {
        //     'mallId': localMallId,
        //   }
        //   let {
        //     malldata
        //   } = this.$route.params;
        //   if (malldata) {
        //     refMallId.mallId = malldata.data[0].id
        //   }
        //   this.$refs.init.initAsis(refMallId, mallData);
        // }, (rejectData) => {})
      },
      reportHandler(emitData) {
        this.asisName = emitData.asis_tit;
        this.propParamHandler(emitData)
      },
      propParamHandler(emitData) {
        this.propParams = emitData;
      },
    },
  }
</script>

<style scoped>
  .element-main{
    margin-top: 120px !important;
  }
</style>