Vue项目使用bpmn预览流程图

简介: Vue项目使用bpmn预览流程图

安装

npm install --save bpmn-js

在需要使用bpmn.js的页面引入bpmn-js的组件,需要编辑就引入Modeler,如果只需要预览就引入Viewer就可以  .


关键代码

<template>
  <my-dialog :visible="isDialogVisible" :title="'经办进度'" size="big" @closed="closed">
    <div class="box" style="height: auto">
      <title-box title-name="执行流程" />
      <div class="main-box">
        <div class="canvas-tools">
          <div class="tools">
            <i class="el-icon-zoom-in" @click="handleZoom(0.05)" />
            <i class="el-icon-zoom-out" @click="handleZoom(-0.05)" />
            <i class="el-icon-refresh" @click="handleZoom(0)" />
          </div>
          <div class="status">
            <div class="finished">已完成</div>
            <div class="going">进行中</div>
            <div class="nostart">未执行</div>
          </div>
        </div>
        <div ref="canvas" class="canvas" />
      </div>
      <div class="box" style="height: auto">
        <title-box title-name="流程节点列表" />
        <MyTable v-loading="loading" :columns="columns" :data="tableData" />
      </div>
    </div>
    <span slot="footer" class="dialog-footer">
      <el-button @click="closed">关闭</el-button>
    </span>
  </my-dialog>
</template>
<script>
import BpmnViewer from 'bpmn-js/lib/Viewer'
import { getHilightProcessInfo } from './Mock.js'
export default {
  name: 'JobDetail',
  model: {
    prop: 'isDialogVisible',
    event: 'closeAll'
  },
  props: {
    loading: {
      type: Boolean,
      default: false
    },
    isDialogVisible: {
      type: Boolean,
      default: false
    },
    dialogTitle: {
      type: String,
      default: '标题'
    },
    acceptCode: {
      type: String,
      default: ''
    }
  },
  data() {
    return {
      bpmnViewer: null,
      scale: 1,
      xmlUrl: '',
      columns: [
        { type: 'index', label: '序号', fixed: 'left', sortable: true },
        {
          prop: 'processNodeName',
          label: '经办环节',
          align: 'center',
          minWidth: '120px'
        },
        { prop: 'assignee', label: '经办人', minWidth: '160px' },
        {
          prop: 'startTime',
          label: '经办时间',
          minWidth: '80px',
          type: 'date'
        },
        { prop: 'handleResult', label: '经办结果', minWidth: '180px' },
        { prop: 'comment', label: '办理意见', minWidth: '180px' }
      ],
      tableData: [],
      completedIds: []
    }
  },
  watch: {
    isDialogVisible(v) {
      v && this.getHilightProcessInfo()
    }
  },
  mounted() {
    // 初始请求
    this.getHilightProcessInfo()
  },
  methods: {
    getHilightProcessInfo() {
      const params = {
        acceptCode: this.acceptCode
      }
      getHilightProcessInfo(params).then((res) => {
        this.completedIds = res.data.completedIds
        this.tableData = res.data.processLogs
        this.xmlUrl = res.data.modelXml
        this.getXmlUrl()
      })
    },
    getXmlUrl() {
      // 初始时清除图层
      this.bpmnViewer && this.bpmnViewer.destroy()
      this.$refs.canvas.innerHTML = ''
      this.scale = 1 // 放大缩小比例
      // 初始化canvas
      this.bpmnViewer = new BpmnViewer({
        container: this.$refs.canvas,
        height: 240 // 根据实际情况设置高度,宽度的话设置父元素的宽度就可以,会自适应的
      })
      const self = this
      const bpmnXmlStr = this.xmlUrl // 从接口获取的xml文件
      this.bpmnViewer.importXML(bpmnXmlStr, function(err) {
        if (err) {
          console.error(err)
        } else {
          const canvas = self.bpmnViewer.get('canvas')
          canvas.zoom('fit-viewport', 'auto')
          // nodeCodes为需要设置高亮颜色的部分的id的集合(xml文件中<flowNodeRef>****</flowNodeRef>标签里的部分),这个数据也是从接口获取,这里从xml中随便取出几个测试用

          // const nodeCodes = [
          //   'Activity_1d2rrr0',
          //   'StartEvent_1',
          //   'Activity_1d2wp4b'
          // ]
          console.log(self.completedIds)
          // 调用设置高亮颜色class方法,这里可以根据接口获取的id集合情况,对不同的部分设置不同的class名,然后在css中设置样式
          self.setNodeColor(self.completedIds, 'nodeSuccess', canvas)
        }
      })
    },
    // 设置高亮颜色的class
    setNodeColor(nodeCodes, colorClass, canvas) {
      for (let i = 0; i < nodeCodes.length; i++) {
        canvas.addMarker(nodeCodes[i], colorClass)
      }
    },
    closed() {
      this.$emit('update:isDialogVisible', false)
      this.$emit('closed')
      this.$emit('closeAll', false)
    },
    // 放大缩小,这里尽量设置flag的值小一点,这样每次放大缩小不会很多,避免放大超出父元素
    handleZoom(flag) {
      this.scale += flag
      if (!flag) {
        this.scale = 1
      }

      if (this.scale < 1) {
        this.scale = 1
        return
      }

      // 不让再放大
      if (this.scale > 1.2) {
        this.scale = 1.2
        return
      }
      this.$nextTick(() => {
        this.bpmnViewer.get('canvas').zoom(this.scale)
      })
    }
  }
}
</script>

<style scoped lang="scss">
.containerBox {
  position: relative;
  #container {
    height: 200px;
  }
}
::v-deep .nodeSuccess:not(.djs-connection) {
  .djs-visual {
    > :nth-child(1) {
      stroke: #00be00 !important;
      stroke-width: 2px !important;
      fill: #7dd87e !important;
    }
  }
}

::v-deep .djs-shape {
  // transform: matrix(1, 0, 0, 1, -4, 64);
}

.main-box {
  padding: 10px;
  height: calc(100% - 50px);
  background-size: 20px 20px, 20px 20px, 10px 10px, 10px 10px;
  background-image: linear-gradient(to right, #dfdfdf 1px, transparent 1px),
    linear-gradient(to bottom, #dfdfdf 1px, transparent 1px),
    linear-gradient(to right, #f1f1f1 1px, transparent 1px),
    linear-gradient(to bottom, #f1f1f1 1px, transparent 1px);
  background-position: left -1px top -1px, left -1px top -1px,
    left -1px top -1px, left -1px top -1px;
}

.canvas-tools {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  .tools {
    display: flex;
    position: absolute;
    left: 10px;
    top: 0;
  }
  i {
    font-size: 16px;
    padding: 0 5px;
    cursor: pointer;
    &:hover {
      color: #333;
    }
  }

  .status {
    display: flex;
    .finished {
      color: #00be00;
      border-left: 20px solid #00be00;
      padding-left: 5px;
    }

    .going {
      color: #d67e7d;
      border-left: 20px solid #d67e7d;
      margin-left: 12px;
      padding-left: 5px;
    }

    .nostart {
      color: #585858;
      border-left: 20px solid #585858;
      margin-left: 12px;
      padding-left: 5px;
    }
  }
}
//去除bpmn的logo,很可能产生侵权,内网无影响
::v-deep .bjs-container {
  a {
    display: none !important;
  }
}
</style>

预览

相关文章
|
3天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
3天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
3天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
3天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
2天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
4天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
2天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
17天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
4天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
9天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发