Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
32c6973c
authored
2023-04-26 13:50:33 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
流程图显示问题处理
1 parent
67dd16b3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
src/views/workflow/components/processViewer.vue
src/views/workflow/components/processViewer.vue
View file @
32c6973
...
...
@@ -53,7 +53,7 @@
</el-select>
<el-table
:data=
"taskCommentList"
size=
"mini"
border
header-cell-class-name=
"table-header-gray"
>
<el-table-column
label=
"序号"
header-align=
"center"
align=
"center"
type=
"index"
width=
"55px"
/>
<el-table-column
label=
"环节名称"
prop=
"
candidat
e"
minWidth=
"150px"
align=
"center"
/>
<el-table-column
label=
"环节名称"
prop=
"
taskNam
e"
minWidth=
"150px"
align=
"center"
/>
<el-table-column
label=
"办理人"
prop=
"assigneeName"
minWidth=
"100px"
align=
"center"
/>
<el-table-column
label=
"处理时间"
prop=
"createTime"
width=
"140px"
align=
"center"
/>
<el-table-column
label=
"办结时间"
prop=
"finishTime"
width=
"140px"
align=
"center"
/>
...
...
@@ -158,6 +158,7 @@
}
this
.
selectTaskId
=
element
.
id
this
.
selectValue
=
element
.
id
this
.
dlgTitle
=
element
.
businessObject
?
element
.
businessObject
.
name
:
undefined
// 计算当前悬浮任务审批记录,如果记录为空不显示弹窗
this
.
taskCommentList
=
(
this
.
formData
.
allCommentList
||
[]).
filter
(
item
=>
{
...
...
@@ -166,6 +167,7 @@
},
// 下拉列表切换
handleSelect
(
val
)
{
this
.
taskCommentList
=
(
this
.
formData
.
allCommentList
||
[]).
filter
(
item
=>
{
return
item
.
taskDefKey
===
val
})
...
...
@@ -213,6 +215,7 @@
},
// 设置流程图元素状态
setProcessStatus
(
processNodeInfo
)
{
this
.
taskCommentList
=
this
.
formData
.
allCommentList
;
this
.
processNodeInfo
=
processNodeInfo
if
(
this
.
isLoading
||
this
.
processNodeInfo
==
null
||
this
.
bpmnViewer
==
null
)
return
const
{
finishedTaskSet
,
rejectedTaskSet
,
unfinishedTaskSet
,
finishedSequenceFlowSet
}
=
this
.
processNodeInfo
...
...
@@ -255,12 +258,15 @@
</
script
>
<
style
scoped
lang=
"scss"
>
.information-list
{
height
:
150px
;
margin-top
:
10px
;
//
height
:
150px
;
//
margin-top
:
10px
;
p
{
font-size
:
16px
;
line-height
:
24px
;
}
}
/
deep
/
.bjs-powered-by
{
display
:
none
;
}
</
style
>
...
...
Please
register
or
sign in
to post a comment