|
@@ -275,7 +275,6 @@ export default {
|
|
},
|
|
},
|
|
show() {
|
|
show() {
|
|
if (this.disabled) return
|
|
if (this.disabled) return
|
|
- this.form = {}
|
|
|
|
this.form = JSON.parse(JSON.stringify(this.nodeConfig))
|
|
this.form = JSON.parse(JSON.stringify(this.nodeConfig))
|
|
this.queryValidNodeList()
|
|
this.queryValidNodeList()
|
|
this.getExpressionFormList()
|
|
this.getExpressionFormList()
|
|
@@ -345,6 +344,9 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
addConditionGroup(route) {
|
|
addConditionGroup(route) {
|
|
|
|
+ if (!route.conditionList) {
|
|
|
|
+ route.conditionList = []
|
|
|
|
+ }
|
|
this.addConditionList(route.conditionList[route.conditionList.push([]) - 1], 'custom')
|
|
this.addConditionList(route.conditionList[route.conditionList.push([]) - 1], 'custom')
|
|
},
|
|
},
|
|
deleteConditionGroup(route, index) {
|
|
deleteConditionGroup(route, index) {
|