学员列表样式优化

This commit is contained in:
unknown 2023-08-03 15:28:54 +08:00
parent e35700684d
commit 98c0c6496a

View File

@ -71,6 +71,7 @@ const MemberPage = () => {
{ {
title: "学员", title: "学员",
dataIndex: "name", dataIndex: "name",
width: 300,
render: (_, record: any) => ( render: (_, record: any) => (
<> <>
<Image <Image
@ -104,10 +105,13 @@ const MemberPage = () => {
}, },
{ {
title: "登录邮箱", title: "登录邮箱",
width: 200,
dataIndex: "email", dataIndex: "email",
render: (email: string) => <span>{email}</span>,
}, },
{ {
title: "加入时间", title: "加入时间",
width: 200,
dataIndex: "created_at", dataIndex: "created_at",
render: (text: string) => <span>{dateFormat(text)}</span>, render: (text: string) => <span>{dateFormat(text)}</span>,
}, },