提交 b86e99de 编写于 作者: qq_45757468's avatar qq_45757468

已发布列表test01

上级 f3cc00b5
import { Table, Tag, Space } from 'antd';
const { Column, ColumnGroup } = Table;
const data = [
{
key: '1',
title:'抽奖标题1',
},
{
key: '2',
title:'抽奖标题2',
},
{
key: '3',
title:'抽奖标题3',
},
];
export default () => (
<Table dataSource={data}>
<Column title=" 抽奖标题" dataIndex="title" key="title" />
<Column
title="操作"
key="action"
render={(text, record) => (
<Space size="middle">
<a>修改</a>
<a>手动开奖</a>
</Space>
)}
/>
</Table>
);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册