Files
flowable_management/base-vue/src/views/modules/instance/flwtodoinstance.vue

286 lines
8.3 KiB
Vue
Raw Normal View History

2025-02-18 19:37:27 +08:00
<template>
<div class="mod-config">
2025-03-14 17:56:05 +08:00
<el-form :inline="true" :model="dataForm" size="mini" @keyup.enter.native="getDataList()">
2025-02-18 19:37:27 +08:00
<el-form-item>
<el-input v-model="dataForm.key" placeholder="参数名" clearable></el-input>
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
</el-form-item>
</el-form>
<el-table
:data="dataList"
border
2025-03-14 17:56:05 +08:00
size="mini"
2025-02-18 19:37:27 +08:00
v-loading="dataListLoading"
@selection-change="selectionChangeHandle"
style="width: 100%;">
<el-table-column
type="selection"
header-align="center"
align="center"
width="50">
</el-table-column>
<el-table-column
prop="taskId"
header-align="center"
align="center"
label="任务编号">
</el-table-column>
<el-table-column
prop="taskName"
header-align="center"
align="center"
label="任务名称">
</el-table-column>
<el-table-column
prop="taskDefKey"
header-align="center"
align="center"
label="任务KEY">
</el-table-column>
<el-table-column
prop="startUserName"
header-align="center"
align="center"
label="流程发起人">
</el-table-column>
<el-table-column
prop="startTime"
header-align="center"
align="center"
label="流程发起时间">
</el-table-column>
<el-table-column
prop="procDefId"
header-align="center"
align="center"
label="流程定义ID">
</el-table-column>
<el-table-column
prop="procInsId"
header-align="center"
align="center"
label="流程实例ID">
</el-table-column>
<el-table-column
prop="assigneeName"
header-align="center"
align="center"
label="审批人">
</el-table-column>
<el-table-column
prop="status"
header-align="center"
align="center"
label="审批类型">
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="150"
label="操作">
<template slot-scope="scope">
<el-button type="text" v-if="scope.row.assigneeName !== null" size="small" @click="approveHandle(scope.row.taskId)">审批</el-button>
<el-button type="text" v-if="scope.row.status == 1 && scope.row.assigneeName === null" size="small" @click="claimHandle(scope.row.taskId)">拾取</el-button>
<el-button type="text" v-if="scope.row.status == 1 && scope.row.assigneeName !== null" size="small" @click="unclaimHandle(scope.row.taskId)">归还</el-button>
<el-button type="text" size="small" @click="showFlowHandle(scope.row.procInsId)">查看流程进度</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
:current-page="pageIndex"
:page-sizes="[10, 20, 50, 100]"
:page-size="pageSize"
:total="totalPage"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
<el-dialog
title="流程审批"
:visible.sync="dialogVisible"
width="30%">
<div style="height: auto;margin-bottom: 30px;">
<el-form label-width="100px" class="demo-dynamic">
<el-form-item>
<el-button type="primary" @click="submitFlowComplete()">审批通过</el-button>
</el-form-item>
</el-form>
</div>
</el-dialog>
<el-dialog
title="流程图"
:visible.sync="dialogActiveVisible"
width="50%">
<div style="height: auto;margin-bottom: 30px;">
<img :src="$imgBasePath+'downloadFlowActiveImg?procId='+procInsId+'&t='+new Date()" height="auto">
</div>
</el-dialog>
</div>
</template>
<script>
export default {
data () {
return {
procInsId:'',
dataForm: {
key: ''
},
dataList: [],
pageIndex: 1,
pageSize: 10,
totalPage: 0,
dataListLoading: false,
dataListSelections: [],
addOrUpdateVisible: false,
dialogVisible:false,
dialogActiveVisible:false,
id:''
}
},
activated () {
this.getDataList()
},
methods: {
// 获取数据列表
getDataList () {
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/flw/instance/myTodoTaskList'),
method: 'get',
params: this.$http.adornParams({
'page': this.pageIndex,
'limit': this.pageSize,
'key': this.dataForm.key
})
}).then(({data}) => {
if (data && data.code === 0) {
this.dataList = data.page.list
this.totalPage = data.page.totalCount
} else {
this.dataList = []
this.totalPage = 0
}
this.dataListLoading = false
})
},approveHandle(id){
this.id = id
this.dialogVisible = true
},showFlowHandle(procInsId){
this.procInsId = procInsId
this.dialogActiveVisible = true
},submitFlowComplete(){
// 做审批通过的操作
this.$http({
url: this.$http.adornUrl(`/flw/instance/completeFlow/${this.id}`),
method: 'get',
params: this.$http.adornParams()
}).then(({data}) => {
if (data && data.code === 0) {
this.dialogVisible = false
this.getDataList();
}
})
},claimHandle(id){
this.$confirm('确定要拾取当前的任务吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl(`/flw/instance/claimTask/${id}`),
method: 'get',
params: this.$http.adornParams()
}).then(({data}) => {
if (data && data.code === 0) {
this.getDataList();
}
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
},unclaimHandle(id){
this.$confirm('确定要归还当前的任务吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl(`/flw/instance/unclaimTask/${id}`),
method: 'get',
params: this.$http.adornParams()
}).then(({data}) => {
if (data && data.code === 0) {
this.getDataList();
}
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
},
// 每页数
sizeChangeHandle (val) {
this.pageSize = val
this.pageIndex = 1
this.getDataList()
},
// 当前页
currentChangeHandle (val) {
this.pageIndex = val
this.getDataList()
},
// 多选
selectionChangeHandle (val) {
this.dataListSelections = val
},
// 删除
deleteHandle (id) {
var ids = id ? [id] : this.dataListSelections.map(item => {
return item.id
})
this.$confirm(`确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl('/flow/flwdemodel/delete'),
method: 'post',
data: this.$http.adornData(ids, false)
}).then(({data}) => {
if (data && data.code === 0) {
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {
this.getDataList()
}
})
} else {
this.$message.error(data.msg)
}
})
})
}
}
}
</script>