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
0bbf4c91
authored
Jan 24, 2025
by
LesanOuO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 服务任务无法启动
parent
7043dea3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue
+21
-12
No files found.
src/components/bpmnProcessDesigner/package/penal/multi-instance/ElementMultiInstance.vue
View file @
0bbf4c91
<
template
>
<
template
>
<div
class=
"panel-tab__content"
>
<div
class=
"panel-tab__content"
>
<el-radio-group
v-model=
"approveMethod"
@
change=
"onApproveMethodChange"
>
<el-radio-group
v-if=
"type === 'UserTask'"
v-model=
"approveMethod"
@
change=
"onApproveMethodChange"
>
<div
class=
"flex-col"
>
<div
class=
"flex-col"
>
<div
v-for=
"(item, index) in APPROVE_METHODS"
:key=
"index"
>
<div
v-for=
"(item, index) in APPROVE_METHODS"
:key=
"index"
>
<el-radio
:value=
"item.value"
:label=
"item.value"
>
<el-radio
:value=
"item.value"
:label=
"item.value"
>
...
@@ -23,6 +27,9 @@
...
@@ -23,6 +27,9 @@
</div>
</div>
</div>
</div>
</el-radio-group>
</el-radio-group>
<div
v-else
>
除了UserTask以外节点的多实例待实现
</div>
<!-- 与Simple设计器配置合并,保留以前的代码 -->
<!-- 与Simple设计器配置合并,保留以前的代码 -->
<el-form
label-width=
"90px"
style=
"display: none"
>
<el-form
label-width=
"90px"
style=
"display: none"
>
<el-form-item
label=
"快捷配置"
>
<el-form-item
label=
"快捷配置"
>
...
@@ -301,19 +308,21 @@ const approveMethod = ref()
...
@@ -301,19 +308,21 @@ const approveMethod = ref()
const
approveRatio
=
ref
(
100
)
const
approveRatio
=
ref
(
100
)
const
otherExtensions
=
ref
()
const
otherExtensions
=
ref
()
const
getElementLoopNew
=
()
=>
{
const
getElementLoopNew
=
()
=>
{
const
extensionElements
=
if
(
props
.
type
===
'UserTask'
)
{
bpmnElement
.
value
.
businessObject
?.
extensionElements
??
const
extensionElements
=
bpmnInstances
().
moddle
.
create
(
'bpmn:ExtensionElements'
,
{
values
:
[]
})
bpmnElement
.
value
.
businessObject
?.
extensionElements
??
approveMethod
.
value
=
extensionElements
.
values
.
filter
(
bpmnInstances
().
moddle
.
create
(
'bpmn:ExtensionElements'
,
{
values
:
[]
})
(
ex
)
=>
ex
.
$type
===
`
${
prefix
}
:ApproveMethod`
approveMethod
.
value
=
extensionElements
.
values
.
filter
(
)?.[
0
]?.
value
(
ex
)
=>
ex
.
$type
===
`
${
prefix
}
:ApproveMethod`
)?.[
0
]?.
value
otherExtensions
.
value
=
otherExtensions
.
value
=
extensionElements
.
values
.
filter
((
ex
)
=>
ex
.
$type
!==
`
${
prefix
}
:ApproveMethod`
)
??
[]
extensionElements
.
values
.
filter
((
ex
)
=>
ex
.
$type
!==
`
${
prefix
}
:ApproveMethod`
)
??
[]
if
(
!
approveMethod
.
value
)
{
if
(
!
approveMethod
.
value
)
{
approveMethod
.
value
=
ApproveMethodType
.
SEQUENTIAL_APPROVE
approveMethod
.
value
=
ApproveMethodType
.
SEQUENTIAL_APPROVE
updateLoopCharacteristics
()
updateLoopCharacteristics
()
}
}
}
}
}
const
onApproveMethodChange
=
()
=>
{
const
onApproveMethodChange
=
()
=>
{
...
...
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