feat(user): 优化用户列表展示和搜索功能

- 修改用户列表的表格配置,增加头像和更新时间列
- 实现用户状态切换功能
- 优化搜索表单样式
- 调整内容区域样式
- 修复日期选择器禁用问题
This commit is contained in:
2025-05-09 16:41:57 +08:00
parent e0868a10af
commit c948b4a3d7
7 changed files with 74 additions and 34 deletions

View File

@@ -135,14 +135,22 @@ export const USER_TABLE_CONFIG = {
{
attrs: {
label: 'ID',
prop: 'order_no',
prop: 'ID',
align: 'center'
}
},
{
attrs: {
label: '头像',
prop: 'avatar',
align: 'center'
},
slot: 'avatar'
},
{
attrs: {
label: '名称',
prop: 'name',
prop: 'nick_name',
align: 'center'
}
},
@@ -159,12 +167,14 @@ export const USER_TABLE_CONFIG = {
prop: 'CreatedAt',
align: 'center'
},
slot: 'CreatedAt'
},{
attrs: {
label: '更新时间',
prop: 'UpdatedAt',
align: 'center'
},
slot: 'UpdatedAt'
},
{
attrs: {