diff --git a/frontend/src/components/PGTable.vue b/frontend/src/components/PGTable.vue index 00b68d8450ada54a9d7ca95ebf0523087d5256c8..041a6123191578cf5a86814175db100b790a7b7b 100644 --- a/frontend/src/components/PGTable.vue +++ b/frontend/src/components/PGTable.vue @@ -58,8 +58,8 @@ const props = defineProps({ const emit = defineEmits(['update:selectedData']) const onSelectionChange = (val: any[]) => { - let d:any[] = [] - val.forEach((item:any)=> { + let d: any[] = [] + val.forEach((item: any) => { d.push(toRaw(item)) }) @@ -101,6 +101,13 @@ const onSelectionChange = (val: any[]) => { width: 100%; height: 40px; + :deep(.el-pagination) { + justify-content: flex-end; + + .el-pagination__sizes { + flex: 1, + } + } } } \ No newline at end of file