fix: 小修改
This commit is contained in:
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user