From 1486beb8973f04d852f14ed6e519639a63a7202a Mon Sep 17 00:00:00 2001
From: tony <846249920@qq.com>
Date: Sun, 18 Dec 2022 13:37:59 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=B5=81=E7=A8=8B?=
=?UTF-8?q?=E8=AE=BE=E8=AE=A1=E6=97=B6=E5=A4=9A=E5=AE=9E=E4=BE=8B=E6=95=B0?=
=?UTF-8?q?=E6=8D=AE=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/components/Process/PropertyPanel.vue | 6 +-
.../nodePanel/property/multiInstance.vue | 74 +++++++++++--------
.../Process/components/nodePanel/task.vue | 26 ++++---
.../components/Process/flowable/flowable.json | 12 ++-
.../src/views/flowable/definition/model.vue | 4 +-
5 files changed, 73 insertions(+), 49 deletions(-)
diff --git a/ruoyi-ui/src/components/Process/PropertyPanel.vue b/ruoyi-ui/src/components/Process/PropertyPanel.vue
index ce58af41..443f81d7 100644
--- a/ruoyi-ui/src/components/Process/PropertyPanel.vue
+++ b/ruoyi-ui/src/components/Process/PropertyPanel.vue
@@ -10,7 +10,6 @@
:groups="groups"
:exps="exps"
:categorys="categorys"
- @dataType="dataType"
/>
@@ -141,10 +140,6 @@ export default {
}
})
},
- /** 获取数据类型 */
- dataType(data){
- this.$emit('dataType', data)
- }
}
}
@@ -156,6 +151,7 @@ export default {
.el-form--label-top .el-form-item__label {
padding: 0;
}
+ // 设置设计器右侧表单高度
.el-form-item {
margin-bottom: 6px;
}
diff --git a/ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue b/ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue
index 357b7167..0da6edb1 100644
--- a/ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue
+++ b/ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue
@@ -3,41 +3,36 @@
-
-
- 按照BPMN2.0规范的要求,用于为每个实例创建执行的父执行,会提供下列变量:
- nrOfInstances:实例总数。
- nrOfActiveInstances:当前活动的(即未完成的),实例数量。对于顺序多实例,这个值总为1。
- nrOfCompletedInstances:已完成的实例数量。
- loopCounter:给定实例在for-each循环中的index。
-
-
-
+
+ 按照BPMN2.0规范的要求,用于为每个实例创建执行的父执行,会提供下列变量:
+ 实例总数。
+ 当前活动的(即未完成的),实例数量。对于顺序多实例,这个值总为1。
+ 已完成的实例数量。
+ 给定实例在for-each循环中的index。
+
+
+
+