Commit 047c6287 by fanyongjun

4.9.4

parent d8db9390
......@@ -88,5 +88,9 @@ div[id^='__qiankun_microapp_wrapper_'] {
border-color: #333333 !important;
}
.yy-table-cell{
word-break:break-all;
}
......@@ -27,23 +27,28 @@ const Element = (props) => {
dataIndex: 'key',
render: (text, record, index) => {
return (index+1).toString();
}
},
width:80
},
{
title: '操作时间',
dataIndex: 'createTimeDesc',
width:180
},
{
title: '操作人',
dataIndex: 'creator',
width:100
},
{
title: '操作类型',
dataIndex: 'operateType',
width:100
},
{
title: '状态',
dataIndex: 'status',
width:80
},
{
title: '变更内容',
......
......@@ -338,22 +338,27 @@ const ImportActionTable = (props) => {
title: '序号',
dataIndex: 'key',
editable: false,
width:80,
render: (text, record, index) => {
return (index+1).toString();
}
},
{
title: '中文名称',
width:120,
dataIndex: 'cnName',
editable: true,
},
{
title: '英文名称',
width:120,
dataIndex: 'name',
editable: true,
},
{
title: '类型',
width:180,
dataIndex: 'datatype',
editable: true,
render: (datatype, record, index) => {
......@@ -381,6 +386,8 @@ const ImportActionTable = (props) => {
{
title: '操作',
dataIndex: 'action',
width:100,
render: (_, record) => {
if (!editable) return null;
......
......@@ -28,15 +28,20 @@ const ModelTable = (props) => {
editable: false,
render: (text, record, index) => {
return (index+1).toString();
}
},
width:80,
},
{
title: '模型名称',
dataIndex: 'name',
width:180,
},
{
title: '中文名称',
dataIndex: 'cnName',
width:180,
},
{
title: '模型描述',
......@@ -45,6 +50,8 @@ const ModelTable = (props) => {
{
title: '操作',
key: 'action',
width:120,
render: (text,record) => {
return (
<Space size='small'>
......
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