Browse Source

[ui] add code in task model (#4583)

pull/3/MERGE
bao liang 3 years ago committed by GitHub
parent
commit
a9748bf207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

4
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

@ -349,6 +349,8 @@
dependence: {},
// cache dependence
cacheDependence: {},
//task code
code:'',
// Current node params data
params: {},
// Running sign
@ -490,6 +492,7 @@
type: this.nodeData.taskType,
id: this.nodeData.id,
name: this.name,
code:this.code,
params: this.params,
description: this.description,
runFlag: this.runFlag,
@ -613,6 +616,7 @@
type: this.nodeData.taskType,
id: this.nodeData.id,
name: this.name,
code: this.code,
params: this.params,
description: this.description,
runFlag: this.runFlag,

Loading…
Cancel
Save