Commit df5861eb authored by 皮倩雯's avatar 皮倩雯

fix: '表字段新增展示字段 接口'

parent 7c6b021e
Pipeline #56014 waiting for manual action with stages
...@@ -396,6 +396,23 @@ const TableManager = props => { ...@@ -396,6 +396,23 @@ const TableManager = props => {
align: 'center', align: 'center',
width: 80, width: 80,
}, },
{
title: '接口',
dataIndex: 'interfaceText',
key: 'interfaceText',
align: 'center',
width: 80,
render: record => {
if (record) {
return (
<Tooltip title={record}>
<span style={{ color: '#50aefc', cursor: 'pointer' }}></span>
</Tooltip>
);
}
return <span></span>;
},
},
{ {
title: '操作', title: '操作',
ellipsis: true, ellipsis: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment