将这个数组中的每个对象格式化成一行:[ { title: '字典名称', dataIndex: 'dic_name', key: 'dic_name', }, { title: '字典值', dataIndex: 'dic_value', key: 'dic_value', }, { title: '所属组', dataIndex: 'dic_group', key: 'dic_group', }, { title: '父级ID', dataIndex: 'dic_parent_id', key: 'dic_parent_id', }, { title: '字典类型', dataIndex: 'dic_type', key: 'dic_type', render: (text: string) => { return text === 'DIR' ? '目录' : '数据'; }, }, { title: '排序', dataIndex: 'dic_order', key: 'dic_order', }, { title: '状态', dataIndex: 'dic_state', key: 'dic_state', render: (text: string) => { return text === 'ON' ? '启用' : '注销'; }, }, { title: '操作', dataIndex: 'action', key: 'action', render: () => { return <a>编辑</a>; }, }, ];
时间: 2024-04-26 15:24:09 浏览: 105
如果表格内的数据是一个链接如:www.sina.com这样写法
[{title: '字典名称', dataIndex: 'dic_name', key: 'dic_name'},
{title: '字典值', dataIndex: 'dic_value', key: 'dic_value'},
{title: '所属组', dataIndex: 'dic_group', key: 'dic_group'},
{title: '父级ID', dataIndex: 'dic_parent_id', key: 'dic_parent_id'},
{title: '字典类型', dataIndex: 'dic_type', key: 'dic_type', render: (text: string) => { return text === 'DIR' ? '目录' : '数据'; }},
{title: '排序', dataIndex: 'dic_order', key: 'dic_order'},
{title: '状态', dataIndex: 'dic_state', key: 'dic_state', render: (text: string) => { return text === 'ON' ? '启用' : '注销'; }},
{title: '操作', dataIndex: 'action', key: 'action', render: () => { return <a>编辑</a>; }},];
阅读全文