mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 03:08:01 +08:00
[Fix][UI Next][V1.0.0-Beta] Added access to the child node function (#9518)
* Added access to the child node function * Added access to the child node function
This commit is contained in:
parent
95ccc0c855
commit
7777a6acfd
@ -109,7 +109,7 @@ const Modal = defineComponent({
|
||||
.filter((item: any) => item.show)
|
||||
.map((item: any) => {
|
||||
return (
|
||||
<ButtonLink onClick={item.action}>
|
||||
<ButtonLink onClick={item.action} disabled={item.disabled}>
|
||||
{{
|
||||
default: () => item.text,
|
||||
icon: () => item.icon()
|
||||
|
@ -615,6 +615,7 @@ const project = {
|
||||
online: 'Online'
|
||||
},
|
||||
node: {
|
||||
return_back: 'Return',
|
||||
current_node_settings: 'Current node settings',
|
||||
instructions: 'Instructions',
|
||||
view_history: 'View history',
|
||||
@ -627,7 +628,6 @@ const project = {
|
||||
workflow_name: 'Workflow Name',
|
||||
workflow_name_tips: 'Please select a workflow (required)',
|
||||
child_node: 'Child Node',
|
||||
enter_child_node: 'Enter child node',
|
||||
run_flag: 'Run flag',
|
||||
normal: 'Normal',
|
||||
prohibition_execution: 'Prohibition execution',
|
||||
|
@ -527,6 +527,7 @@ const project = {
|
||||
'目前没有任何工作流,请先创建工作流,再访问该页面'
|
||||
},
|
||||
task: {
|
||||
current_task_settings: '当前任务设置',
|
||||
online: '已上线',
|
||||
offline: '已下线',
|
||||
task_name: '任务名称',
|
||||
@ -610,6 +611,7 @@ const project = {
|
||||
online: '已上线'
|
||||
},
|
||||
node: {
|
||||
return_back: '返回上一节点',
|
||||
current_node_settings: '当前节点设置',
|
||||
instructions: '使用说明',
|
||||
view_history: '查看历史',
|
||||
@ -622,7 +624,6 @@ const project = {
|
||||
workflow_name: '工作流名称',
|
||||
workflow_name_tips: '请选择工作流(必选)',
|
||||
child_node: '子节点',
|
||||
enter_child_node: '进入该子节点',
|
||||
run_flag: '运行标志',
|
||||
normal: '正常',
|
||||
prohibition_execution: '禁止执行',
|
||||
|
@ -64,7 +64,7 @@ export function querySubProcessInstanceByTaskCode(
|
||||
code: CodeReq
|
||||
): any {
|
||||
return axios({
|
||||
url: `/projects/${code}/process-instances/query-sub-by-parent`,
|
||||
url: `/projects/${code.projectCode}/process-instances/query-sub-by-parent`,
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
|
@ -57,8 +57,8 @@ interface SubIdReq {
|
||||
}
|
||||
|
||||
interface TaskReq {
|
||||
taskCode: string
|
||||
taskId: number
|
||||
taskCode?: string
|
||||
taskId?: number
|
||||
}
|
||||
|
||||
interface LongestReq {
|
||||
|
@ -33,7 +33,8 @@ import { formatModel } from './format-data'
|
||||
import {
|
||||
HistoryOutlined,
|
||||
ProfileOutlined,
|
||||
QuestionCircleTwotone
|
||||
QuestionCircleTwotone,
|
||||
BranchesOutlined
|
||||
} from '@vicons/antd'
|
||||
import { NIcon } from 'naive-ui'
|
||||
import { TASK_TYPES_MAP } from '../../constants/task-type'
|
||||
@ -45,6 +46,9 @@ import type {
|
||||
IWorkflowTaskInstance,
|
||||
WorkflowInstance
|
||||
} from './types'
|
||||
import {
|
||||
querySubProcessInstanceByTaskCode
|
||||
} from '@/service/modules/process-instances'
|
||||
|
||||
const props = {
|
||||
show: {
|
||||
@ -57,7 +61,8 @@ const props = {
|
||||
},
|
||||
projectCode: {
|
||||
type: Number as PropType<number>,
|
||||
required: true
|
||||
required: true,
|
||||
default: 0
|
||||
},
|
||||
readonly: {
|
||||
type: Boolean as PropType<boolean>,
|
||||
@ -147,6 +152,30 @@ const NodeDetailModal = defineComponent({
|
||||
handleViewLog()
|
||||
},
|
||||
icon: renderIcon(ProfileOutlined)
|
||||
},
|
||||
{
|
||||
text: t('project.node.enter_this_child_node'),
|
||||
show: props.data.taskType === 'SUB_PROCESS',
|
||||
disabled: !props.data.id || (router.currentRoute.value.name === 'workflow-instance-detail' && !props.taskInstance),
|
||||
action: () => {
|
||||
if (router.currentRoute.value.name === 'workflow-instance-detail') {
|
||||
querySubProcessInstanceByTaskCode({ taskId: props.taskInstance?.id }, { projectCode: props.projectCode }).then(
|
||||
(res: any) => {
|
||||
router.push({
|
||||
name: 'workflow-instance-detail',
|
||||
params: { id: res.subProcessInstanceId },
|
||||
query: { code: props.data.taskParams?.processDefinitionCode }
|
||||
})
|
||||
}
|
||||
)
|
||||
} else {
|
||||
router.push({
|
||||
name: 'workflow-definition-detail',
|
||||
params: { code: props.data.taskParams?.processDefinitionCode }
|
||||
})
|
||||
}
|
||||
},
|
||||
icon: renderIcon(BranchesOutlined)
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user