|
|
|
@ -196,34 +196,24 @@
|
|
|
|
|
*/ |
|
|
|
|
close () { |
|
|
|
|
this.$emit('close') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
checkedTimeout (val) { |
|
|
|
|
if (!val) { |
|
|
|
|
this.timeout = 0 |
|
|
|
|
this.store.commit('dag/setTimeout', _.cloneDeep(this.timeout)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created () { |
|
|
|
|
/** |
|
|
|
|
* reload localParam |
|
|
|
|
*/ |
|
|
|
|
reloadParam () { |
|
|
|
|
const dag = _.cloneDeep(this.store.state.dag) |
|
|
|
|
|
|
|
|
|
let fixedParam = [] |
|
|
|
|
const tasks = this.store.state.dag.tasks |
|
|
|
|
for (const task of tasks) { |
|
|
|
|
const localParam = task.params ? task.params.localParams : [] |
|
|
|
|
if (localParam && localParam.length > 0) { |
|
|
|
|
fixedParam = fixedParam.concat(localParam) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
fixedParam = fixedParam.map(f => { |
|
|
|
|
return { |
|
|
|
|
prop: f.prop, |
|
|
|
|
value: f.value, |
|
|
|
|
localParam.forEach(l => { |
|
|
|
|
if (!fixedParam.some(f => { return f.prop === l.prop })) { |
|
|
|
|
fixedParam.push(Object.assign({ |
|
|
|
|
ifFixed: true |
|
|
|
|
}, l)) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let globalParams = _.cloneDeep(dag.globalParams) |
|
|
|
|
|
|
|
|
@ -237,9 +227,27 @@
|
|
|
|
|
return g |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
this.udpList = [...fixedParam, ...globalParams] |
|
|
|
|
this.udpListCache = [...fixedParam, ...globalParams] |
|
|
|
|
let udpList = [...fixedParam, ...globalParams].sort(s => { |
|
|
|
|
if (s.ifFixed) { |
|
|
|
|
return -1 |
|
|
|
|
} else { |
|
|
|
|
return 1 |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
this.udpList = udpList |
|
|
|
|
this.udpListCache = udpList |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
checkedTimeout (val) { |
|
|
|
|
if (!val) { |
|
|
|
|
this.timeout = 0 |
|
|
|
|
this.store.commit('dag/setTimeout', _.cloneDeep(this.timeout)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created () { |
|
|
|
|
const dag = _.cloneDeep(this.store.state.dag) |
|
|
|
|
|
|
|
|
|
this.name = dag.name |
|
|
|
|
this.originalName = dag.name |
|
|
|
|