fix: 小修改

This commit is contained in:
ZhuRui
2026-08-04 13:52:54 +08:00
parent 256ba7bd0a
commit 46a2deda87
2 changed files with 28 additions and 15 deletions
@@ -79,6 +79,17 @@
margin-bottom: 12px; margin-bottom: 12px;
} }
.tableWrap {
max-height: 200px;
overflow-y: auto;
}
.paginationRow {
display: flex;
justify-content: flex-end;
margin-top: 8px;
}
.refundSummary { .refundSummary {
display: flex; display: flex;
gap: 32px; gap: 32px;
@@ -181,8 +192,8 @@
} }
} }
.orderModalWrap { // .orderModalWrap {
:global(.ant-modal-body) { // :global(.ant-modal-body) {
padding-top: 16px; // padding-top: 16px;
} // }
} // }
@@ -255,16 +255,18 @@ export default defineComponent({
<div class={styles.section}> <div class={styles.section}>
<div class={styles.sectionTitle}></div> <div class={styles.sectionTitle}></div>
<Table <div class={styles.tableWrap}>
columns={PLAYER_COLUMNS} <Table
dataSource={players.value} columns={PLAYER_COLUMNS}
loading={playersLoading.value} dataSource={players.value}
size="small" loading={playersLoading.value}
bordered size="small"
pagination={false} bordered
scroll={{ x: 'max-content', y: 200 }} pagination={false}
/> scroll={{ x: 'max-content' }}
<div style={{ textAlign: 'right', marginTop: 18 }}> />
</div>
<div class={styles.paginationRow}>
<Pagination <Pagination
current={playerPage.value} current={playerPage.value}
pageSize={playerPageSize} pageSize={playerPageSize}