Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3c7526de
authored
Nov 26, 2024
by
Lesan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 重构自定义配置,支持对不同类型节点绩效配置
parent
886f3391
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
2 deletions
+28
-2
src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue
+2
-2
src/components/bpmnProcessDesigner/package/penal/custom-config/ElementCustomConfig.vue
+0
-0
src/components/bpmnProcessDesigner/package/penal/custom-config/components/BoundaryEventTimer.vue
+13
-0
src/components/bpmnProcessDesigner/package/penal/custom-config/components/UserTask.vue
+0
-0
src/components/bpmnProcessDesigner/package/penal/custom-config/data.ts
+13
-0
No files found.
src/components/bpmnProcessDesigner/package/penal/PropertiesPanel.vue
View file @
3c7526de
...
@@ -54,8 +54,8 @@
...
@@ -54,8 +54,8 @@
<
template
#
title
><Icon
icon=
"ep:promotion"
/>
其他
</
template
>
<
template
#
title
><Icon
icon=
"ep:promotion"
/>
其他
</
template
>
<element-other-config
:id=
"elementId"
/>
<element-other-config
:id=
"elementId"
/>
</el-collapse-item>
</el-collapse-item>
<el-collapse-item
name=
"customConfig"
v-if=
"elementType.indexOf('Task') !== -1"
key=
"customConfig"
>
<el-collapse-item
name=
"customConfig"
key=
"customConfig"
>
<
template
#
title
><Icon
icon=
"ep:
circle-plus-filled
"
/>
自定义配置
</
template
>
<
template
#
title
><Icon
icon=
"ep:
tools
"
/>
自定义配置
</
template
>
<element-custom-config
:id=
"elementId"
:type=
"elementType"
/>
<element-custom-config
:id=
"elementId"
:type=
"elementType"
/>
</el-collapse-item>
</el-collapse-item>
</el-collapse>
</el-collapse>
...
...
src/components/bpmnProcessDesigner/package/penal/custom-config/ElementCustomConfig.vue
View file @
3c7526de
This diff is collapsed.
Click to expand it.
src/components/bpmnProcessDesigner/package/penal/custom-config/components/BoundaryEventTimer.vue
0 → 100644
View file @
3c7526de
<
template
>
<div>
定时边界事件(非中断)
</div>
</
template
>
<
script
lang=
"ts"
setup
>
// TODO 未来继续完善
defineOptions
({
name
:
'ElementCustomConfig4BoundaryEventTimer'
})
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
src/components/bpmnProcessDesigner/package/penal/custom-config/components/UserTask.vue
0 → 100644
View file @
3c7526de
This diff is collapsed.
Click to expand it.
src/components/bpmnProcessDesigner/package/penal/custom-config/data.ts
0 → 100644
View file @
3c7526de
import
UserTask
from
'./components/UserTask.vue'
import
BoundaryEventTimer
from
'./components/BoundaryEventTimer.vue'
export
const
CustomConfigMap
=
{
UserTask
:
{
name
:
'用户任务'
,
componet
:
UserTask
},
BoundaryEventTimerEventDefinition
:
{
name
:
'定时边界事件(非中断)'
,
componet
:
BoundaryEventTimer
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment