系统管理/部门管理角色管理用户管理
This commit is contained in:
@ -3,6 +3,7 @@ export interface FlowDefinitionQuery extends PageQuery {
|
||||
flowName?: string;
|
||||
category: string | number;
|
||||
isPublish?: number;
|
||||
projectId: string | number;
|
||||
}
|
||||
|
||||
export interface FlowDefinitionVo {
|
||||
@ -23,6 +24,7 @@ export interface FlowDefinitionForm {
|
||||
flowCode: string;
|
||||
category: string;
|
||||
formPath: string;
|
||||
projectId: string;
|
||||
}
|
||||
|
||||
export interface definitionXmlVO {
|
||||
|
@ -2,9 +2,11 @@ import { RouterJumpVo } from '@/api/workflow/workflowCommon/types';
|
||||
|
||||
export default {
|
||||
routerJump(routerJumpVo: RouterJumpVo, proxy) {
|
||||
console.log(routerJumpVo.formPath);
|
||||
proxy.$tab.closePage(proxy.$route);
|
||||
|
||||
proxy.$router.push({
|
||||
path: routerJumpVo.formPath,
|
||||
path: routerJumpVo.formPath ? '/' + routerJumpVo.formPath : routerJumpVo.formPath,
|
||||
query: {
|
||||
id: routerJumpVo.businessId,
|
||||
type: routerJumpVo.type,
|
||||
|
Reference in New Issue
Block a user