parent
7afbd8672c
commit
2b7be663f0
10 changed files with 287 additions and 15 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,245 @@ |
|||||||
|
<template> |
||||||
|
<basic-container> |
||||||
|
<avue-crud ref="crud" |
||||||
|
:option="option" |
||||||
|
:table-loading="loading" |
||||||
|
:data="data" |
||||||
|
:page.sync="page" |
||||||
|
v-model="form" |
||||||
|
@search-change="searchChange" |
||||||
|
@search-reset="searchReset" |
||||||
|
@selection-change="selectionChange" |
||||||
|
@current-change="currentChange" |
||||||
|
@size-change="sizeChange" |
||||||
|
@refresh-change="onLoad(page, query)" |
||||||
|
@on-load="onLoad"> |
||||||
|
<template #processDefinitionName="{row}"> |
||||||
|
<el-link v-if="permission.wf_ops_detail" |
||||||
|
style="font-size: 12px;" |
||||||
|
type="primary" |
||||||
|
@click="handleDetail(row)">{{row.processDefinitionName}}</el-link> |
||||||
|
<span v-else>{{row.processDefinitionName}}</span> |
||||||
|
</template> |
||||||
|
<template #menu="{row}"> |
||||||
|
<el-button v-if="permission.wf_ops_follow" |
||||||
|
type="text" |
||||||
|
size="small" |
||||||
|
icon="el-icon-search" |
||||||
|
@click="handleFlow(row)">流程图</el-button> |
||||||
|
</template> |
||||||
|
</avue-crud> |
||||||
|
|
||||||
|
<el-dialog :visible.sync="bpmnVisible" |
||||||
|
append-to-body |
||||||
|
destroy-on-close |
||||||
|
title="流程图"> |
||||||
|
<wf-design ref="bpmn" |
||||||
|
style="height: 500px;" |
||||||
|
:options="bpmnOption"></wf-design> |
||||||
|
</el-dialog> |
||||||
|
<el-drawer :visible.sync="detailVisible" |
||||||
|
:title="form.processDefinitionName" |
||||||
|
custom-class="wf-drawer" |
||||||
|
size="60%" |
||||||
|
append-to-body> |
||||||
|
<task-detail v-if="detailVisible" |
||||||
|
:taskId="form.taskId" |
||||||
|
:processInstanceId="form.processInstanceId"></task-detail> |
||||||
|
</el-drawer> |
||||||
|
</basic-container> |
||||||
|
|
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import { detail } from '@/api/plugin/workflow/process' |
||||||
|
import { getDoneList as getList } from "@/api/plugin/workflow/ops"; |
||||||
|
import { mapGetters } from "vuex"; |
||||||
|
|
||||||
|
import TaskDetail from './detail.vue' |
||||||
|
import exForm from '../mixins/ex-form' |
||||||
|
|
||||||
|
export default { |
||||||
|
mixins: [exForm], |
||||||
|
components: { |
||||||
|
TaskDetail |
||||||
|
}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
form: {}, |
||||||
|
query: {}, |
||||||
|
loading: true, |
||||||
|
page: { |
||||||
|
pageSize: 10, |
||||||
|
currentPage: 1, |
||||||
|
total: 0 |
||||||
|
}, |
||||||
|
selectionList: [], |
||||||
|
option: { |
||||||
|
size: 'mini', |
||||||
|
height: 'auto', |
||||||
|
calcHeight: 30, |
||||||
|
tip: false, |
||||||
|
border: true, |
||||||
|
selection: true, |
||||||
|
dialogType: 'drawer', |
||||||
|
addBtn: false, |
||||||
|
editBtn: false, |
||||||
|
delBtn: false, |
||||||
|
align: 'center', |
||||||
|
searchSize: 'mini', |
||||||
|
searchMenuSpan: 6, |
||||||
|
// searchIndex: 3, |
||||||
|
// searchIcon: true, |
||||||
|
column: [ |
||||||
|
{ |
||||||
|
label: '流程名称', |
||||||
|
prop: 'processDefinitionName', |
||||||
|
search: true, |
||||||
|
overHidden: true |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '流程标识', |
||||||
|
prop: 'processDefinitionKey', |
||||||
|
search: true, |
||||||
|
overHidden: true |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '流水号', |
||||||
|
prop: 'serialNumber', |
||||||
|
search: true, |
||||||
|
overHidden: true |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: "流程分类", |
||||||
|
row: true, |
||||||
|
type: 'tree', |
||||||
|
dicUrl: '/api/blade-workflow/design/category/tree', |
||||||
|
props: { |
||||||
|
label: 'name', |
||||||
|
value: 'id' |
||||||
|
}, |
||||||
|
prop: "category", |
||||||
|
search: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '申请人', |
||||||
|
prop: 'applyUserName', |
||||||
|
search: true |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '开始时间', |
||||||
|
prop: 'createTime', |
||||||
|
type: 'datetime', |
||||||
|
format: 'yyyy-MM-dd HH:mm', |
||||||
|
width: 165, |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '结束时间', |
||||||
|
prop: 'endTime', |
||||||
|
type: 'datetime', |
||||||
|
format: 'yyyy-MM-dd HH:mm', |
||||||
|
width: 165, |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '开始时间', |
||||||
|
prop: 'date', |
||||||
|
type: 'date', |
||||||
|
dataType: 'string', |
||||||
|
format: 'yyyy-MM-dd', |
||||||
|
valueFormat: 'yyyy-MM-dd', |
||||||
|
hide: true, |
||||||
|
search: true, |
||||||
|
searchRange: true, |
||||||
|
}, |
||||||
|
{ |
||||||
|
label: '结束时间', |
||||||
|
prop: 'date2', |
||||||
|
type: 'date', |
||||||
|
dataType: 'string', |
||||||
|
format: 'yyyy-MM-dd', |
||||||
|
valueFormat: 'yyyy-MM-dd', |
||||||
|
hide: true, |
||||||
|
search: true, |
||||||
|
searchRange: true, |
||||||
|
} |
||||||
|
] |
||||||
|
}, |
||||||
|
data: [], |
||||||
|
bpmnVisible: false, |
||||||
|
bpmnOption: {}, |
||||||
|
detailVisible: false |
||||||
|
}; |
||||||
|
}, |
||||||
|
computed: { |
||||||
|
...mapGetters(["permission"]), |
||||||
|
ids() { |
||||||
|
let ids = []; |
||||||
|
this.selectionList.forEach(ele => { |
||||||
|
ids.push(ele.taskId); |
||||||
|
}); |
||||||
|
return ids.join(","); |
||||||
|
} |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
handleDetail(row) { |
||||||
|
this.dynamicRoute(row, 'detail', true).then(() => { |
||||||
|
this.form = { ...row } |
||||||
|
this.detailVisible = true |
||||||
|
}) |
||||||
|
}, |
||||||
|
handleFlow(row) { |
||||||
|
const { taskId, processInstanceId } = row |
||||||
|
detail({ taskId, processInsId: processInstanceId }).then(res => { |
||||||
|
const { process, flow } = res.data.data |
||||||
|
|
||||||
|
this.bpmnOption = { |
||||||
|
mode: 'view', |
||||||
|
xml: process.xml, |
||||||
|
flows: this.handleResolveFlows(flow) |
||||||
|
} |
||||||
|
|
||||||
|
this.bpmnVisible = true |
||||||
|
}) |
||||||
|
}, |
||||||
|
searchReset() { |
||||||
|
this.query = {}; |
||||||
|
this.onLoad(this.page); |
||||||
|
}, |
||||||
|
searchChange(params, done) { |
||||||
|
this.query = params; |
||||||
|
this.page.currentPage = 1; |
||||||
|
this.onLoad(this.page, params); |
||||||
|
done(); |
||||||
|
}, |
||||||
|
selectionChange(list) { |
||||||
|
this.selectionList = list; |
||||||
|
}, |
||||||
|
currentChange(currentPage) { |
||||||
|
this.page.currentPage = currentPage; |
||||||
|
}, |
||||||
|
sizeChange(pageSize) { |
||||||
|
this.page.pageSize = pageSize; |
||||||
|
}, |
||||||
|
async onLoad(page, params = {}) { |
||||||
|
this.loading = true; |
||||||
|
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
||||||
|
const data = res.data.data |
||||||
|
this.page.total = data.total |
||||||
|
this.data = data.records |
||||||
|
this.loading = false |
||||||
|
}).catch(() => { |
||||||
|
this.loading = false |
||||||
|
}) |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss"> |
||||||
|
.wf-drawer { |
||||||
|
.el-drawer__body { |
||||||
|
padding: 0 20px; |
||||||
|
overflow: auto; |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
||||||
Loading…
Reference in new issue