Feature/0723/zr #8
@@ -49,6 +49,11 @@
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.tableWrap {
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.paginationRow {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
|
||||
@@ -247,15 +247,16 @@ export default defineComponent({
|
||||
<div class={styles.groupTitle}>
|
||||
{cat.name}({CATEGORY_TYPE_MAP[cat.type] ?? cat.type})
|
||||
</div>
|
||||
<Table
|
||||
columns={PLAYER_COLUMNS}
|
||||
dataSource={categoryPlayers.value[cat.id] || []}
|
||||
loading={categoryPlayerLoading.value[cat.id]}
|
||||
scroll={{ x: 'max-content', y: 200 }}
|
||||
size="small"
|
||||
pagination={false}
|
||||
bordered
|
||||
/>
|
||||
<div class={styles.tableWrap}>
|
||||
<Table
|
||||
columns={PLAYER_COLUMNS}
|
||||
dataSource={categoryPlayers.value[cat.id] || []}
|
||||
loading={categoryPlayerLoading.value[cat.id]}
|
||||
size="small"
|
||||
pagination={false}
|
||||
bordered
|
||||
/>
|
||||
</div>
|
||||
{categoryPlayerTotal.value[cat.id] > 0 && (
|
||||
<div class={styles.paginationRow}>
|
||||
<Pagination
|
||||
|
||||
Reference in New Issue
Block a user