chore(admin-ui): introduce list-card component and apply to subscriptions index

This commit is contained in:
萝卜
2026-03-16 01:13:32 +08:00
parent efa4b321e6
commit 6cb53435b1
3 changed files with 79 additions and 3 deletions

View File

@@ -128,6 +128,41 @@
margin:0;
}
/* 可复用List Card列表页统一卡片标题区/操作区/表格区) */
.list-card{
padding:0;
}
.list-card-header{
padding:14px 16px;
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:12px;
}
.list-card-title{
margin:0;
}
.list-card-subtitle{
margin-top:6px;
}
.list-card-body{
border-top:1px solid var(--adm-border-color, #e5e7eb);
padding:0;
}
.list-card-table{
margin:0;
}
.list-card-table th,
.list-card-table td{
padding:12px 12px;
}
/* 可复用PageHeader参考 Ant Design Pro标题区 + 描述 + 右侧操作区) */
.page-header{
width:100%;