|
|
@ -42,7 +42,8 @@ export function useNodeMenu(options: Options) { |
|
|
|
logRef: '', |
|
|
|
logRef: '', |
|
|
|
logLoadingRef: ref(true), |
|
|
|
logLoadingRef: ref(true), |
|
|
|
skipLineNum: ref(0), |
|
|
|
skipLineNum: ref(0), |
|
|
|
limit: ref(1000) |
|
|
|
limit: ref(1000), |
|
|
|
|
|
|
|
taskCode: '' |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
const menuHide = () => { |
|
|
|
const menuHide = () => { |
|
|
@ -52,8 +53,9 @@ export function useNodeMenu(options: Options) { |
|
|
|
graph.value?.unlockScroller() |
|
|
|
graph.value?.unlockScroller() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const menuStart = () => { |
|
|
|
const menuStart = (code: number) => { |
|
|
|
nodeVariables.startModalShow = true |
|
|
|
nodeVariables.startModalShow = true |
|
|
|
|
|
|
|
nodeVariables.taskCode = String(code) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const viewLog = (taskId: number, taskType: string) => { |
|
|
|
const viewLog = (taskId: number, taskType: string) => { |
|
|
|