feat(PageContent): 列表列增加show配置项

This commit is contained in:
cshaptx4869
2024-05-17 20:37:54 +08:00
parent 8558479140
commit 0ea7d0a513
3 changed files with 100 additions and 132 deletions

View File

@@ -33,7 +33,7 @@ const contentConfig: IContentConfig<UserQuery> = {
],
cols: [
{ type: "selection", width: 50, align: "center" },
{ label: "编号", align: "center", prop: "id", width: 100 },
{ label: "编号", align: "center", prop: "id", width: 100, show: false },
{ label: "用户名", align: "center", prop: "username" },
{ label: "头像", align: "center", prop: "avatar", templet: "image" },
{ label: "用户昵称", align: "center", prop: "nickname", width: 120 },