account.vue 1.02 KB
<template>
  <div class="ipage-main ipage-floor-month-detail" @scroll="pageScroll">
    <el-row class="ipart h400" :gutter="12">
      <el-col>
        <module mkey="card" title="客流总览" icon="renyuan"></module>
      </el-col>
    </el-row>
    <el-row class="ipart clist mpart" type="flex" justify="space-between">
      <el-col>
        <trend ref="trend" :mparam="emitData"></trend>
      </el-col>
    </el-row>
    <el-row class="ipart">
      <el-col>
        <module mkey="itable" :action="true" :pagination="true" icon="shuju1" ckey="mall_ranking"></module>
      </el-col>
    </el-row>
  </div>
</template>
<script>
import mixin from "../common/option/mixin";
import trend from "../common/module/trendAccount.vue";
export default {
  mixins: [mixin],
  components: {
    trend,
  },
  data() {
    return {
      reportType: "NewAccount",
      mparam:{}
    };
  },
  methods: {},
  created() {},
  mounted() {
  },
};
</script>

<style scoped>
    .clist{
        background:#FFF;
        margin-bottom: 10px;
    }
</style>