前言:
状态机主要包含四部分的内容:状态流模版管理、状态流设计器、流程图渲染模块、审批日志(如下图所示)
状态流管理和状态留设计器:
流程图渲染模块:
审批日志模块:(集成了审批日志和流程图)
如何集成:
状态流模版管理、状态流设计器:
csb系统
非csb系系统
https://kb.cvte.com/pages/viewpage.action?pageId=273316485
流程图渲染模块:
yarn add @cvte/cir-csb-generator
import FlowChart from '@cvte/cir-csb-generator/src/layoutComponents/csbFlowChar';
const App: FC<IProps> = () => {
return (
<>
<FlowChart pageId={pageId} height={500} apiConfig={core: ''} ></FlowChart>
</>
);
}
interface IProps {}
属性说明:
审批日志:
yarn add @cvte/cir-csb-generator
import ChangeLog from '@cvte/cir-csb-generator/src/layoutComponents/csbChangeLog';
const App: FC<IProps> = () => {
return (
<>
<ChangeLog
pageId={pageId}
apiConfig={core: ''}
changeLogTableExtraConfig={
style: {}
}
flowCharExtraConfig={
modalConfig: {style: {}, bodyStyle: {}},
flowCharHeight: 500
}
/>
</>
);
}
interface IProps {}
属性说明:
作者:黄威鸿 创建时间:2022-06-08 14:15
最后编辑:黄威鸿 更新时间:2022-11-10 10:58
最后编辑:黄威鸿 更新时间:2022-11-10 10:58