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
21997b99
Commit
21997b99
authored
Jul 09, 2022
by
chenjiuping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改工作流组件
parent
9eee52fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
20 deletions
+40
-20
create.vue
src/views/bpm/processInstance/create.vue
+3
-0
detail.vue
src/views/bpm/processInstance/detail.vue
+37
-20
No files found.
src/views/bpm/processInstance/create.vue
View file @
21997b99
...
...
@@ -124,6 +124,9 @@ export default {
this
.
bpmnXML
=
response
.
data
})
}
else
if
(
row
.
formCustomCreatePath
)
{
//
console
.
log
(
"
-------------------------------
"
);
console
.
log
(
row
.
formCustomCreatePath
);
this
.
$router
.
push
({
path
:
row
.
formCustomCreatePath
});
// 这里暂时无需加载流程图,因为跳出到另外个 Tab;
}
...
...
src/views/bpm/processInstance/detail.vue
View file @
21997b99
...
...
@@ -5,7 +5,7 @@
<div
slot=
"header"
class=
"clearfix"
>
<span
class=
"el-icon-picture-outline"
>
审批任务【
{{
item
.
name
}}
】
</span>
</div>
<el-col
:span=
"16"
:offset=
"6"
>
<el-col
:span=
"16"
:offset=
"6"
>
<el-form
:ref=
"'form' + index"
:model=
"auditForms[index]"
:rules=
"auditRule"
label-width=
"100px"
>
<el-form-item
label=
"流程名"
v-if=
"processInstance && processInstance.name"
>
{{
processInstance
.
name
}}
...
...
@@ -16,17 +16,21 @@
</el-form-item>
<el-form-item
label=
"抄送人"
prop=
"copyUserIds"
>
<el-select
v-model=
"auditForms[index].copyUserIds"
clearable
multiple
filterable
style=
"width: 100%"
>
<el-option
v-for=
"item in userOptions"
:key=
"parseInt(item.id)"
:label=
"item.nickname"
:value=
"parseInt(item.id)"
/>
<el-option
v-for=
"item in userOptions"
:key=
"parseInt(item.id)"
:label=
"item.nickname"
:value=
"parseInt(item.id)"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"审批建议"
prop=
"comment"
>
<el-input
type=
"textarea"
v-model=
"auditForms[index].comment"
placeholder=
"请输入审批建议"
/>
<el-input
type=
"textarea"
v-model=
"auditForms[index].comment"
placeholder=
"请输入审批建议"
/>
</el-form-item>
</el-form>
<div
style=
"margin-left: 10%; margin-bottom: 20px; font-size: 14px;"
>
<el-button
icon=
"el-icon-edit-outline"
type=
"success"
size=
"mini"
@
click=
"handleAudit(item, true)"
>
通过
</el-button>
<el-button
icon=
"el-icon-circle-close"
type=
"danger"
size=
"mini"
@
click=
"handleAudit(item, false)"
>
不通过
</el-button>
<el-button
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleUpdateAssignee(item)"
>
转办
</el-button>
<el-button
icon=
"el-icon-edit-outline"
type=
"success"
size=
"mini"
@
click=
"handleAudit(item, true)"
>
通过
</el-button>
<el-button
icon=
"el-icon-circle-close"
type=
"danger"
size=
"mini"
@
click=
"handleAudit(item, false)"
>
不通过
</el-button>
<el-button
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleUpdateAssignee(item)"
>
转办
</el-button>
<el-button
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleDelegate(item)"
>
委派
</el-button>
<el-button
icon=
"el-icon-refresh-left"
type=
"warning"
size=
"mini"
@
click=
"handleBack(item)"
>
退回
</el-button>
</div>
...
...
@@ -39,22 +43,29 @@
</div>
<el-col
v-if=
"this.processInstance.processDefinition && this.processInstance.processDefinition.formType === 10"
:span=
"16"
:offset=
"6"
>
<div
>
<parser
:key=
"new Date().getTime()"
:form-conf=
"detailForm"
@
submit=
"submitForm"
/>
<div>
<parser
:key=
"new Date().getTime()"
:form-conf=
"detailForm"
@
submit=
"submitForm"
/>
</div>
</el-col>
<div
v-if=
"this.processInstance.processDefinition && this.processInstance.processDefinition.formType === 20"
>
<router-link
:to=
"this.processInstance.processDefinition.formCustomViewPath + '?id='
<!--
<span>
{{
this
.
processInstance
.
processDefinition
.
formCustomViewPath
}}
</span>
-->
<div
v-if=
"this.processInstance.processDefinition.formCustomViewPath=='special-discount'"
>
<special-discount
:id=
"this.processInstance.businessKey"
></special-discount>
</div>
<div
v-else
>
<router-link
:to=
"this.processInstance.processDefinition.formCustomViewPath + '?id='
+ this.processInstance.businessKey"
>
<el-button
type=
"primary"
>
点击查看
</el-button>
</router-link>
<el-button
type=
"primary"
>
点击查看
</el-button>
</router-link>
</div>
</div>
</el-card>
<el-card
class=
"box-card"
v-loading=
"tasksLoad"
>
<div
slot=
"header"
class=
"clearfix"
>
<span
class=
"el-icon-picture-outline"
>
审批记录
</span>
</div>
<el-col
:span=
"16"
:offset=
"4"
>
<el-col
:span=
"16"
:offset=
"4"
>
<div
class=
"block"
>
<el-timeline>
<el-timeline-item
v-for=
"(item, index) in tasks"
:key=
"index"
...
...
@@ -68,9 +79,12 @@
<label
style=
"font-weight: normal"
>
创建时间:
</label>
<label
style=
"color:#8a909c; font-weight: normal"
>
{{
parseTime
(
item
.
createTime
)
}}
</label>
<label
v-if=
"item.endTime"
style=
"margin-left: 30px;font-weight: normal"
>
审批时间:
</label>
<label
v-if=
"item.endTime"
style=
"color:#8a909c;font-weight: normal"
>
{{
parseTime
(
item
.
endTime
)
}}
</label>
<label
v-if=
"item.endTime"
style=
"color:#8a909c;font-weight: normal"
>
{{
parseTime
(
item
.
endTime
)
}}
</label>
<label
v-if=
"item.durationInMillis"
style=
"margin-left: 30px;font-weight: normal"
>
耗时:
</label>
<label
v-if=
"item.durationInMillis"
style=
"color:#8a909c;font-weight: normal"
>
{{
getDateStar
(
item
.
durationInMillis
)
}}
</label>
<label
v-if=
"item.durationInMillis"
style=
"color:#8a909c;font-weight: normal"
>
{{
getDateStar
(
item
.
durationInMillis
)
}}
</label>
<p
v-if=
"item.comment"
>
<el-tag
:type=
"getTimelineItemType(item)"
>
{{
item
.
comment
}}
</el-tag>
</p>
...
...
@@ -87,7 +101,7 @@
<span
class=
"el-icon-picture-outline"
>
流程图
</span>
</div>
<my-process-viewer
key=
"designer"
v-model=
"bpmnXML"
v-bind=
"bpmnControlForm"
:activityData=
"activityList"
:processInstanceData=
"processInstance"
:taskData=
"tasks"
/>
:processInstanceData=
"processInstance"
:taskData=
"tasks"
/>
</el-card>
<!-- 对话框(转派审批人) -->
...
...
@@ -95,7 +109,8 @@
<el-form
ref=
"updateAssigneeForm"
:model=
"updateAssignee.form"
:rules=
"updateAssignee.rules"
label-width=
"110px"
>
<el-form-item
label=
"新审批人"
prop=
"assigneeUserId"
>
<el-select
v-model=
"updateAssignee.form.assigneeUserId"
clearable
style=
"width: 100%"
>
<el-option
v-for=
"item in userOptions"
:key=
"parseInt(item.id)"
:label=
"item.nickname"
:value=
"parseInt(item.id)"
/>
<el-option
v-for=
"item in userOptions"
:key=
"parseInt(item.id)"
:label=
"item.nickname"
:value=
"parseInt(item.id)"
/>
</el-select>
</el-form-item>
</el-form>
...
...
@@ -118,12 +133,14 @@ import {approveTask, getTaskListByProcessInstanceId, rejectTask, updateTaskAssig
import
{
getDate
}
from
"
@/utils/dateUtils
"
;
import
{
listSimpleUsers
}
from
"
@/api/system/user
"
;
import
{
getActivityList
}
from
"
@/api/bpm/activity
"
;
import
specialDiscount
from
"
@/views/ecw/offer/specialDiscount
"
// 流程实例的详情页,可用于审批
export
default
{
name
:
"
ProcessInstanceDetail
"
,
components
:
{
Parser
Parser
,
specialDiscount
},
data
()
{
return
{
...
...
@@ -153,7 +170,7 @@ export default {
runningTasks
:
[],
auditForms
:
[],
auditRule
:
{
comment
:
[{
required
:
true
,
message
:
"
审批建议不能为空
"
,
trigger
:
"
blur
"
}],
comment
:
[{
required
:
true
,
message
:
"
审批建议不能为空
"
,
trigger
:
"
blur
"
}],
},
// 转派审批人
...
...
@@ -164,7 +181,7 @@ export default {
assigneeUserId
:
undefined
,
},
rules
:
{
assigneeUserId
:
[{
required
:
true
,
message
:
"
新审批人不能为空
"
,
trigger
:
"
change
"
}],
assigneeUserId
:
[{
required
:
true
,
message
:
"
新审批人不能为空
"
,
trigger
:
"
change
"
}],
}
},
...
...
@@ -285,7 +302,7 @@ export default {
fields
:
decodeFields
(
row
.
formFields
)
}
}
else
if
(
row
.
formCustomCreatePath
)
{
this
.
$router
.
push
({
path
:
row
.
formCustomCreatePath
});
this
.
$router
.
push
({
path
:
row
.
formCustomCreatePath
});
// 这里暂时无需加载流程图,因为跳出到另外个 Tab;
}
},
...
...
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