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
5efa271b
authored
2023-08-07 17:15:55 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
--no commit message
1 parent
f044aa79
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
src/views/workflow/components/processViewer.vue
src/views/workflow/components/processViewer.vue
View file @
5efa271
...
...
@@ -485,8 +485,19 @@
// this.taskList =this.formData.allCommentList;
// 处理数据之后赋值
this
.
taskCommentList
=
this
.
taskList
;
this
.
taskCommentList
=
this
.
taskCommentList
.
sort
(
this
.
sortDownDate
)
},
/**
* 时间排序函数
* @description: formatDate
* @param {*} row
* @param {*} column
* @author: renchao
*/
sortDownDate
(
a
,
b
)
{
return
Date
.
parse
(
a
.
createTime
)
-
Date
.
parse
(
b
.
createTime
);
},
// 设置流程图元素状态
/**
* @description: 设置流程图元素状态
...
...
Please
register
or
sign in
to post a comment