feat(user): 新增用户管理功能

- 添加用户列表页面,包含搜索、分页等功能
- 实现用户状态切换和详情查看功能
- 新增用户选择组件,用于选择用户
- 优化表格组件,支持自定义列和操作
- 添加面包屑组件,用于展示导航路径
This commit is contained in:
2025-04-28 17:57:16 +08:00
parent 749d285a0d
commit e0868a10af
17 changed files with 1132 additions and 46 deletions

View File

@@ -49,3 +49,18 @@
outline: none;
}
}
.container-wrapper{
min-height: calc(100vh - 12rem);
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
}
.footer-box{
display: flex;
justify-content: center;
padding: 1rem 0;
position: sticky;
bottom: 0;
border-top: 1px solid #ededed;
}