We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7acb966 commit 3b0a508Copy full SHA for 3b0a508
web/packages/workflows/module/common/iframe/index.vue
@@ -40,9 +40,13 @@ export default {
40
},
41
methods: {
42
getUrl() {
43
+ let workspaceId = this.$route.query.workspaceId;
44
+ let workFlowLists = JSON.parse(sessionStorage.getItem(`work_flow_lists_${workspaceId}`)) || [];
45
+ const item = workFlowLists.find(it => (it.query && it.query.flowId == this.$route.query.flowId))
46
const params = {
47
nodeType: this.node.type,
48
projectID: +this.$route.query.projectID,
49
+ flowId: item && item.query.appId,
50
params: {
51
...this.node.jobContent,
52
title: this.node.title,
0 commit comments