This commit is contained in:
2023-11-28 19:42:50 +08:00
23 changed files with 411 additions and 125 deletions

View File

@@ -57,7 +57,7 @@ type TabeStateType = {
/**表格状态 */
let tableState: TabeStateType = reactive({
loading: false,
size: 'middle',
size: 'small',
striped: false,
seached: true,
data: [],
@@ -81,7 +81,7 @@ let tableColumns: ColumnsType = [
{
title: 'NodeB Name',
dataIndex: 'name',
align: 'center',
align: 'left',
width: 2,
},
{
@@ -292,7 +292,7 @@ onMounted(() => {
:size="tableState.size"
:row-class-name="fnTableStriped"
:pagination="tablePagination"
:scroll="{ x: 1000, y: 400 }"
:scroll="{ y: 450 }"
>
</a-table>
</a-card>