|
@@ -31,7 +31,13 @@
|
|
|
@change="conditionChange"
|
|
|
v-if="showConditionSelect"
|
|
|
></condition>
|
|
|
- <bpmn-form v-if="showFormSelect" :values="formValues" @change="formChange" :channelId="channelId" :getFormList='getFormList'></bpmn-form>
|
|
|
+ <bpmn-form
|
|
|
+ v-if="showFormSelect"
|
|
|
+ :values="formValues"
|
|
|
+ @change="formChange"
|
|
|
+ :channelId="channelId"
|
|
|
+ :getFormList="getFormList"
|
|
|
+ ></bpmn-form>
|
|
|
<service
|
|
|
v-if="showSerivceSelect"
|
|
|
:values="serviceValues"
|
|
@@ -108,7 +114,7 @@ export default {
|
|
|
// 节点ID的顺序集合
|
|
|
nodeIdOrderList: [],
|
|
|
|
|
|
- getFormList:[],
|
|
|
+ getFormList: []
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -866,6 +872,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
+ debugger;
|
|
|
this.showConditionSelect = false;
|
|
|
this.conditionValues = '';
|
|
|
|