UNPKG

bpmn-vue-iview

Version:

基于 'vue' 、'bpmn.io@7.0' 、 'iview@4.7' 和 'workflow-bpmn-modeler@0.2.8',实现 flowable 的 modeler 模型设计器

25 lines (23 loc) 597 B
import executionListenerDialog from '../components/nodePanel/property/executionListener' export default { components: { executionListenerDialog }, data() { return { executionListenerLength: 0, dialogName: null } }, methods: { computedExecutionListenerLength() { this.executionListenerLength = this.element.businessObject.extensionElements?.values?.length ?? 0 }, finishExecutionListener() { if (this.dialogName === 'executionListenerDialog') { this.computedExecutionListenerLength() } this.dialogName = '' } } }