From 8b163c914e2c502163be6b7e90bd676dc5fcf6dc Mon Sep 17 00:00:00 2001 From: tony <846249920@qq.com> Date: Mon, 13 Sep 2021 16:41:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E3=80=81=E9=80=80=E5=9B=9E=E6=B5=81=E7=A8=8B=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 + ruoyi-ui/src/components/Process/index.vue | 5 +- .../src/views/flowable/task/record/index.vue | 339 +++++++++++------- 3 files changed, 222 insertions(+), 124 deletions(-) diff --git a/README.md b/README.md index d55a633..1332998 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ 基RuoYi-vue 4.x + flowable 6.5 的工作流管理 ~ +记得右上角点个 star 持续关注更新哟~~ + 一直想学习和入门flowable, 期间大量面向百度编程解决了很多问题, 感谢 [flowable初级使用手册](https://www.shangmayuan.com/a/538a0b230dbe4798b273305b.html) ,零基础学习很值得一看。最后感谢 [若依框架](https://gitee.com/y_project/RuoYi-Vue) ,快速集成开发爽到飞起 ~~~ diff --git a/ruoyi-ui/src/components/Process/index.vue b/ruoyi-ui/src/components/Process/index.vue index fca6963..e5857d0 100644 --- a/ruoyi-ui/src/components/Process/index.vue +++ b/ruoyi-ui/src/components/Process/index.vue @@ -160,7 +160,6 @@ export default { this.adjustPalette() this.fitViewport() if (this.taskList !==undefined && this.taskList.length > 0 ) { - debugger this.fillColor() } } catch (err) { @@ -256,8 +255,8 @@ export default { }) } - - } + + } // 并行网关 else if (n.$type === 'bpmn:ParallelGateway') { if (completeTask) { diff --git a/ruoyi-ui/src/views/flowable/task/record/index.vue b/ruoyi-ui/src/views/flowable/task/record/index.vue index 960f42d..1a66b2c 100644 --- a/ruoyi-ui/src/views/flowable/task/record/index.vue +++ b/ruoyi-ui/src/views/flowable/task/record/index.vue @@ -1,75 +1,36 @@