account.vue
1.13 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
49
50
51
52
53
54
55
56
57
58
<template>
<div class="ipage-main ipage-floor-month-detail" @scroll="pageScroll">
<el-row class="ipart">
<el-col>
<module mkey="itable1" :action="true" :pagination="true" icon="shuju1" :storeSearch='true' ckey="mall_ranking"></module>
</el-col>
</el-row>
</div>
</template>
<script>
import mixin from "@/views/iPage/common/option/mixin";
export default {
mixins: [mixin],
data() {
return {
reportType: "NewAccount",
};
},
methods: {},
created() {},
mounted() {},
};
</script>
<style scoped>
.ipage-main{
height: auto !important;
}
.ipage_top {
position: relative;
width: 100%;
display: flex;
height: 30px;
justify-content: space-between;
}
.ipage_top .tit {
color: #000;
font-size: 16px;
font-weight: 500;
line-height: 30px;
display: flex;
align-items: center;
}
.ipage_top .tit img {
width: 24px;
margin-right: 5px;
}
.ipage_top .acts {
display: flex;
justify-content: flex-end;
align-items: center;
}
</style>