table.vue
1.76 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
<template>
<a-table
rowKey="id"
bordered
:loading="childLoading"
:columns="columns"
:data-source="getPageData"
:scroll="{x: 1000}"
:pagination="pagination"
@change="changePage"
>
<a slot="modelName" slot-scope="data, row" @click="goDetail(row)">
{{ data }}
</a>
<div slot="startTime" slot-scope="data">
{{ mc_dateTime(data) }}
</div>
<div slot="terminateTime" slot-scope="data">
{{ mc_dateTime(data) }}
</div>
</a-table>
</template>
<script>
import databaseScheduleColumn from '@/utils/ColumnData/databaseScheduleColumn';
import {mapActions, mapGetters} from 'vuex';
export default {
name: 'DatabaseTable',
props: {
childLoading: {
type: Boolean,
default: false,
},
},
data() {
return {
columns: databaseScheduleColumn,
};
},
computed: {
...mapGetters('Schedule/page', {
getPageData: 'getPageData',
getPagination: 'getPagination',
getPageParams: 'getPageParams',
}),
pagination: {
get() {
return this.getPagination;
},
set(e) {
this.setPagination({
size: e.size,
page: e.page,
});
},
},
},
methods: {
...mapActions('Schedule/page', {
setPagination: 'setPagination',
fetchPageData: 'fetchPageData',
}),
...mapActions('Drone/detail', {
fetchDetailData: 'fetchDetailData',
}),
changePage(e) {
this.pagination = {
size: e.pageSize,
page: e.current,
};
this.fetchPageData(this.getPageParams);
},
goDetail(row) {
this.fetchDetailData(row.droneId);
this.$router.push({
path: `/database/schedule/${row.id}`,
});
},
},
};
</script>
<style scoped lang="scss"></style>