Commit 028d28b4 by zhaochengxiang

流程编辑模型 影响加入标准功能

parent 07b9a9ac
...@@ -901,7 +901,7 @@ const ImportActionTable = (props) => { ...@@ -901,7 +901,7 @@ const ImportActionTable = (props) => {
{ {
value => <React.Fragment> value => <React.Fragment>
{ {
!isEditing(record) && <React.Fragment> !editable && <React.Fragment>
{ {
record?.isPossibleNewRecommendedDefinition?.possible && <Typography.Link className='mr-3' onClick={(event) => { record?.isPossibleNewRecommendedDefinition?.possible && <Typography.Link className='mr-3' onClick={(event) => {
event.stopPropagation(); event.stopPropagation();
......
...@@ -91,6 +91,7 @@ const ImportModal = (props) => { ...@@ -91,6 +91,7 @@ const ImportModal = (props) => {
} }
const reset = () => { const reset = () => {
form.resetFields();
form.setFieldsValue({mode: 'excel-copy'}); form.setFieldsValue({mode: 'excel-copy'});
setModeKey('excel-copy'); setModeKey('excel-copy');
setHints([]); setHints([]);
......
...@@ -71,7 +71,7 @@ const SuggestTable = (props) => { ...@@ -71,7 +71,7 @@ const SuggestTable = (props) => {
} }
}, },
{ {
title: '描述', title: '业务含义',
dataIndex: 'remark', dataIndex: 'remark',
width: isSzseEnv?360:160, width: isSzseEnv?360:160,
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