Skip to content

Commit dc41cab

Browse files
committed
fix: bug fix
1 parent 1488c4e commit dc41cab

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

frontend/src/views/system/member/index.vue

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -287,18 +287,18 @@ const handleCurrentChange = (val: number) => {
287287
</template>
288288
</el-table>
289289
</div>
290-
<div class="pagination-container">
291-
<el-pagination
292-
v-model:current-page="pageInfo.currentPage"
293-
v-model:page-size="pageInfo.pageSize"
294-
:page-sizes="[10, 20, 30]"
295-
:background="true"
296-
layout="total, sizes, prev, pager, next, jumper"
297-
:total="pageInfo.total"
298-
@size-change="handleSizeChange"
299-
@current-change="handleCurrentChange"
300-
/>
301-
</div>
290+
</div>
291+
<div class="pagination-container">
292+
<el-pagination
293+
v-model:current-page="pageInfo.currentPage"
294+
v-model:page-size="pageInfo.pageSize"
295+
:page-sizes="[10, 20, 30]"
296+
:background="true"
297+
layout="total, sizes, prev, pager, next, jumper"
298+
:total="pageInfo.total"
299+
@size-change="handleSizeChange"
300+
@current-change="handleCurrentChange"
301+
/>
302302
</div>
303303
<div v-if="multipleSelectionAll.length" class="bottom-select">
304304
<el-checkbox
@@ -370,15 +370,15 @@ const handleCurrentChange = (val: number) => {
370370
line-height: 28px;
371371
}
372372
}
373+
.pagination-container {
374+
display: flex;
375+
justify-content: end;
376+
align-items: center;
377+
margin-top: 16px;
378+
}
373379
.table-content {
374-
height: calc(100% - 104px);
375-
376-
.pagination-container {
377-
display: flex;
378-
justify-content: end;
379-
align-items: center;
380-
margin-top: 16px;
381-
}
380+
max-height: calc(100% - 104px);
381+
overflow-y: auto;
382382
383383
.preview-or-schema {
384384
.user-status-container {

0 commit comments

Comments
 (0)