Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
388c4a26
Commit
388c4a26
authored
Jun 07, 2022
by
wanglianghe
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
a2dd3cab
ead8d916
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
copy.vue
src/views/bpm/task/copy.vue
+7
-13
No files found.
src/views/bpm/task/copy.vue
View file @
388c4a26
...
...
@@ -4,8 +4,8 @@
<!-- 搜索工作栏 -->
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"流程名"
prop=
"
n
ame"
>
<el-input
v-model=
"queryParams.
n
ame"
placeholder=
"请输入流程名"
clearable
@
keyup.enter.native=
"handleQuery"
/>
<el-form-item
label=
"流程名"
prop=
"
processN
ame"
>
<el-input
v-model=
"queryParams.
processN
ame"
placeholder=
"请输入流程名"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"创建时间"
>
<el-date-picker
v-model=
"dateRangeCreateTime"
style=
"width: 240px"
value-format=
"yyyy-MM-dd"
...
...
@@ -19,21 +19,15 @@
<!-- 列表 -->
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
label=
"任务编号"
align=
"center"
prop=
"
i
d"
width=
"320"
/>
<el-table-column
label=
"任务名称"
align=
"center"
prop=
"
nam
e"
/>
<el-table-column
label=
"所属流程"
align=
"center"
prop=
"process
Instance.n
ame"
/>
<el-table-column
label=
"流程发起人"
align=
"center"
prop=
"
processInstance.startUserNickn
ame"
/>
<el-table-column
label=
"任务编号"
align=
"center"
prop=
"
taskI
d"
width=
"320"
/>
<el-table-column
label=
"任务名称"
align=
"center"
prop=
"
titl
e"
/>
<el-table-column
label=
"所属流程"
align=
"center"
prop=
"process
N
ame"
/>
<el-table-column
label=
"流程发起人"
align=
"center"
prop=
"
originatorN
ame"
/>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"状态"
align=
"center"
prop=
"version"
width=
"80"
>
<
template
slot-scope=
"scope"
>
<el-tag
type=
"success"
v-if=
"scope.row.suspensionState === 1"
>
激活
</el-tag>
<el-tag
type=
"warning"
v-if=
"scope.row.suspensionState === 2"
>
挂起
</el-tag>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleAudit(scope.row)"
...
...
@@ -102,7 +96,7 @@ export default {
this
.
handleQuery
();
},
handleAudit
(
row
)
{
this
.
$router
.
push
({
path
:
"
/bpm/process-instance/detail
"
,
query
:
{
id
:
row
.
processInstance
.
i
d
}});
this
.
$router
.
push
({
path
:
"
/bpm/process-instance/detail
"
,
query
:
{
id
:
row
.
instanceI
d
}});
},
}
};
...
...
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