Commit 047c6287 by fanyongjun

4.9.4

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