Feature/0723/zr #8

Merged
chenzhen merged 26 commits from feature/0723/ZR into release/0.01 2026-08-06 13:51:34 +08:00
2 changed files with 28 additions and 15 deletions
Showing only changes of commit 46a2deda87 - Show all commits
@@ -79,6 +79,17 @@
margin-bottom: 12px;
}
.tableWrap {
max-height: 200px;
overflow-y: auto;
}
.paginationRow {
display: flex;
justify-content: flex-end;
margin-top: 8px;
}
.refundSummary {
display: flex;
gap: 32px;
@@ -181,8 +192,8 @@
}
}
.orderModalWrap {
:global(.ant-modal-body) {
padding-top: 16px;
}
}
// .orderModalWrap {
// :global(.ant-modal-body) {
// padding-top: 16px;
// }
// }
@@ -255,16 +255,18 @@ export default defineComponent({
<div class={styles.section}>
<div class={styles.sectionTitle}></div>
<Table
columns={PLAYER_COLUMNS}
dataSource={players.value}
loading={playersLoading.value}
size="small"
bordered
pagination={false}
scroll={{ x: 'max-content', y: 200 }}
/>
<div style={{ textAlign: 'right', marginTop: 18 }}>
<div class={styles.tableWrap}>
<Table
columns={PLAYER_COLUMNS}
dataSource={players.value}
loading={playersLoading.value}
size="small"
bordered
pagination={false}
scroll={{ x: 'max-content' }}
/>
</div>
<div class={styles.paginationRow}>
<Pagination
current={playerPage.value}
pageSize={playerPageSize}