147f66b7 by 蔡俊立

流程图完善

1 parent 4f845864
......@@ -108,7 +108,7 @@ export default {
.ls-mask {
width: 100%;
height: 100%;
z-index: 2000;
z-index: 500;
position: fixed;
left: 0;
top: 0;
......
......@@ -157,7 +157,7 @@ export default {
this.selectTaskId = element.id
this.dlgTitle = element.businessObject ? element.businessObject.name : undefined
// 计算当前悬浮任务审批记录,如果记录为空不显示弹窗
this.taskCommentList = (this.allCommentList || []).filter(item => {
this.taskCommentList = (this.formData.allCommentList || []).filter(item => {
return item.taskDefKey === this.selectTaskId
})
this.dialogVisible = true
......