Commit 5fe99eb4 authored by 皮倩雯's avatar 皮倩雯

fix: '规则配置新增中途关单'

parent 8f4db477
Pipeline #83903 failed with stages
......@@ -42,6 +42,8 @@ const RuleConfig = props => {
return `$action.nodeAction='挂起'`;
} else if (val === '解挂') {
return `$action.nodeAction='解挂'`;
} else if (val === '中途关单') {
return `$action.nodeAction='中途关单'`;
}
};
useEffect(() => {
......
......@@ -134,7 +134,7 @@ const ConfigCopyPerson = (props, ref) => {
}
});
list.push({
TableFieldNames: ['撤回', '回退', '转办', '移交', '挂起', '解挂'],
TableFieldNames: ['撤回', '回退', '转办', '移交', '挂起', '解挂', '中途关单'],
TableName: '操作动作',
});
setFieldList(list);
......
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