mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 01:01:52 +08:00
1. 修复 ProcessViewer 找不到 taskList 报错,= = 变量名改了。
2. 增加事件监听器,悬浮可以展示部分信息
This commit is contained in:
parent
1425f7dfcc
commit
348762ae6a
@ -41,6 +41,8 @@ export default {
|
|||||||
this.$emit("destroy", this.bpmnModeler);
|
this.$emit("destroy", this.bpmnModeler);
|
||||||
this.bpmnModeler = null;
|
this.bpmnModeler = null;
|
||||||
});
|
});
|
||||||
|
// 初始模型的监听器
|
||||||
|
this.initModelListeners();
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value: function (newValue) { // 在 xmlString 发生变化时,重新创建,从而绘制流程图
|
value: function (newValue) { // 在 xmlString 发生变化时,重新创建,从而绘制流程图
|
||||||
@ -140,7 +142,7 @@ export default {
|
|||||||
if (activity) {
|
if (activity) {
|
||||||
canvas.addMarker(n.id, activity.endTime ? 'highlight' : 'highlight-todo')
|
canvas.addMarker(n.id, activity.endTime ? 'highlight' : 'highlight-todo')
|
||||||
n.outgoing?.forEach(nn => {
|
n.outgoing?.forEach(nn => {
|
||||||
const targetTask = this.taskList.find(m => m.key === nn.targetRef.id)
|
const targetTask = activityList.find(m => m.key === nn.targetRef.id)
|
||||||
if (targetTask) {
|
if (targetTask) {
|
||||||
canvas.addMarker(nn.id, targetTask.endTime ? 'highlight' : 'highlight-todo')
|
canvas.addMarker(nn.id, targetTask.endTime ? 'highlight' : 'highlight-todo')
|
||||||
canvas.addMarker(nn.targetRef.id, targetTask.endTime ? 'highlight' : 'highlight-todo')
|
canvas.addMarker(nn.targetRef.id, targetTask.endTime ? 'highlight' : 'highlight-todo')
|
||||||
@ -166,7 +168,41 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
},
|
||||||
|
initModelListeners() {
|
||||||
|
const EventBus = this.bpmnModeler.get("eventBus");
|
||||||
|
const that = this;
|
||||||
|
// 注册需要的监听事件, 将. 替换为 - , 避免解析异常
|
||||||
|
EventBus.on('element.hover', function(eventObj) {
|
||||||
|
let element = eventObj ? eventObj.element : null;
|
||||||
|
that.elementHover(element);
|
||||||
|
});
|
||||||
|
EventBus.on('element.out', function(eventObj) {
|
||||||
|
let element = eventObj ? eventObj.element : null;
|
||||||
|
that.elementOut(element);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 流程图的元素被 hover
|
||||||
|
elementHover(element) {
|
||||||
|
this.element = element;
|
||||||
|
!this.elementOverlayIds && (this.elementOverlayIds = {});
|
||||||
|
!this.overlays && (this.overlays = this.bpmnModeler.get("overlays"));
|
||||||
|
// 展示信息
|
||||||
|
if (!this.elementOverlayIds[element.id] && element.type !== "bpmn:Process") {
|
||||||
|
this.elementOverlayIds[element.id] = this.overlays.add(element, {
|
||||||
|
position: { left: 0, bottom: 0 },
|
||||||
|
html: `<div class="element-overlays">
|
||||||
|
<p>Elemet id: ${element.id}</p>
|
||||||
|
<p>Elemet type: ${element.type}</p>
|
||||||
|
</div>`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 流程图的元素被 out
|
||||||
|
elementOut(element) {
|
||||||
|
this.overlays.remove({ element });
|
||||||
|
this.elementOverlayIds[element.id] = null;
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -68,7 +68,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-card>
|
</el-card>
|
||||||
<!-- TODO 流程图 -->
|
|
||||||
|
<!-- 高亮流程图 -->
|
||||||
<el-card class="box-card" v-loading="processInstanceLoading">
|
<el-card class="box-card" v-loading="processInstanceLoading">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span class="el-icon-picture-outline">流程图</span>
|
<span class="el-icon-picture-outline">流程图</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user