update 调整查询流程图渲染空指针错误,优化流程图样式
This commit is contained in:
@ -31,9 +31,9 @@ export const pageByFinish = (query: FlowInstanceQuery): AxiosPromise<FlowInstanc
|
||||
/**
|
||||
* 通过业务id获取历史流程图
|
||||
*/
|
||||
export const flowImage = (businessId: string | number) => {
|
||||
export const flowHisTaskList = (businessId: string | number) => {
|
||||
return request({
|
||||
url: `/workflow/instance/flowImage/${businessId}` + '?t' + Math.random(),
|
||||
url: `/workflow/instance/flowHisTaskList/${businessId}` + '?t' + Math.random(),
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
@ -8,8 +8,7 @@ export default {
|
||||
query: {
|
||||
id: routerJumpVo.businessId,
|
||||
type: routerJumpVo.type,
|
||||
taskId: routerJumpVo.taskId,
|
||||
instanceId: routerJumpVo.instanceId
|
||||
taskId: routerJumpVo.taskId
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@ -4,7 +4,6 @@ export interface RouterJumpVo {
|
||||
type: string;
|
||||
formCustom: string;
|
||||
formPath: string;
|
||||
instanceId: string | number;
|
||||
}
|
||||
|
||||
export interface StartProcessBo {
|
||||
|
||||
Reference in New Issue
Block a user