layout-table.vue
1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
<div class="layout-table">
<div class="layout-table-content">
<i-table ref="table" :columns="columns" :data="data" :height="height" :row-class-name="rowClassName" @on-selection-change="onSelect"></i-table>
</div>
<div class="footer">
<div class="footer-left">
<slot name="footer"></slot>
</div>
<div class="footer-right">
<i-page
:current="page"
:total="total"
:page-size="pageSize"
@on-change="onChange"></i-page>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'LayoutTable',
props: {
total: Number,
page: Number,
columns: Array,
data: Array,
onSelect: Function,
rowClassName: {
type: Function,
default() {
return () => {}
}
}
},
data() {
return {
pageSize: 10,
height: 500,
};
},
mounted() {
window.addEventListener('resize', this.handleResize);
this.handleResize();
},
beforeDestroy() {
window.removeEventListener('resize', this.handleResize);
},
methods: {
handleResize() {
if (this.$refs.table.$el.parentNode) {
this.height = this.$refs.table.$el.parentNode.clientHeight - 1;
}
},
onChange(page) {
this.$emit('on-page-change', page);
}
}
};
</script>
<style lang="scss" scoped>
.layout-table {
flex: 1;
height: inherit;
display: flex;
flex-direction: column;
.layout-table-content {
margin-top: 10px;
flex: 1;
overflow: hidden;
}
.footer {
height: 42px;
width: 100%;
display: flex;
padding-top: 10px;
}
.footer-left {
flex: 1;
}
.footer-right {
width: 500px;
text-align: right;
}
}
</style>