UNPKG

jcbpm-vue

Version:

jcbpm-vue

334 lines (333 loc) 6.39 kB
/** * @description 校验 人员姓名,人员Id * eg. 指派处理人、委派 */ export declare const commonUserParams: { type: string; properties: { confirmUserId: { type: string; }; confirmUserName: { type: string; }; }; required: string[]; }; /** * @description 加签 */ export declare const addSignParams: { type: string; properties: { procInstId: { type: string; }; confirmNodeId: { type: string; }; confirmNodeName: { type: string; }; confirmUserId: { type: string; }; confirmUserName: { type: string; }; }; required: string[]; }; /** * @description 办理任务 */ export declare const handleParams: { type: string; properties: { resolved: { type: string; enum: number[]; }; params: { type: string; }; message: { type: string; }; }; required: string[]; }; /** * @description 跳转 */ export declare const jumpParams: { type: string; properties: { confirmNodeId: { type: string; }; confirmNodeName: { type: string; }; confirmUserId: { type: string; }; confirmUserName: { type: string; }; }; required: string[]; }; /** * @description 发起流程 */ export declare const launchParams: { type: string; properties: { instanceName: { type: string; }; autoComplete: { type: string; }; flowID: { type: string; }; params: { type: string; }; }; required: string[]; }; /** * @description 退回历史节点 */ export declare const rejectHistoryNodeParams: { type: string; properties: { confirmNodeId: { type: string; }; confirmNodeName: { type: string; }; confirmUserId: { type: string; }; confirmUserName: { type: string; }; message: { type: string; }; }; required: string[]; }; /** * @description 退回上一节点 */ export declare const rejectLastNodeParams: { type: string; properties: { message: { type: string; }; }; }; /** * @description 减签 */ export declare const subSignParams: { type: string; minItems: number; items: { type: string; properties: { taskId: { type: string; }; procInstId: { type: string; }; confirmUserId: { type: string; }; confirmUserName: { type: string; }; confirmNodeId: { type: string; }; confirmNodeName: { type: string; }; }; required: string[]; }[]; }; /** * @description 拿回 */ export declare const takeBackParams: { type: string; properties: { instanceId: { type: string; }; message: { type: string; }; }; required: string[]; }; /** * @description 终止任务 */ export declare const terminateParams: { type: string; properties: { message: { type: string; }; }; }; /** * @description 转办 */ export declare const transferParams: { type: string; properties: { confirmUserId: { type: string; }; confirmUserName: { type: string; }; }; required: string[]; }; /** * @description 初始化配置数据 */ export declare const initConfigParams: { type: string; properties: { AuthenticationToken: { type: string; }; BpmRequestPrefix: { type: string; }; RbacRequestPrefix: { type: string; }; }; required: string[]; }; /** * @description 获取办理人员信息 */ export declare const getHandlePersoParams: { type: string; }; /** * @description 获取当前节点信息 任务 */ export declare const getCurrentNodeParams: { type: string; properties: { taskId: { type: string; }; customParam: { type: string; }; params: { type: string; properties: { customParam: { type: string; }; operate: { type: string; }; }; }; }; required: string[]; }; /** * @description 获取下一个节点信息(发起时) */ export declare const getProcessNextNodeParams: { type: string; properties: { flowId: { type: string; }; customParam: { type: string; }; }; required: string[]; }; /** * @description 获取下一个节点信息(办理时) */ export declare const getNextTasksNodeParams: { type: string; properties: { taskId: { type: string; }; formParamsData: { type: string; }; }; required: string[]; }; /** * @description 获取可以跳转的节点信息 */ export declare const getTasksJumpNodesParams: { type: string; properties: { taskId: { type: string; }; }; required: string[]; }; /** * @description 获取历史节点信息 */ export declare const getHistoryNodeParams: { type: string; }; /** * @description 查询可减签、加签的人员信息 */ export declare const getTasksSignUsersParams: { type: string; properties: { nodeId: { type: string; }; nodeType: { type: string; }; }; required: string[]; }; /** * @description 获取历史节点操作记录信息 */ export declare const getHistoryRecordsListParams: { type: string; properties: { businessKey: { type: string; }; }; required: string[]; };