account.vue
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<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>