2022-01-09 09:46:34 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
2022-03-19 19:29:35 +08:00
|
|
|
<doc-alert title="工作流" url="https://doc.iocoder.cn/bpm" />
|
2022-01-09 09:46:34 +08:00
|
|
|
|
|
|
|
<!-- 搜索工作栏 -->
|
2022-03-20 22:58:13 +08:00
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
2022-01-09 09:46:34 +08:00
|
|
|
<el-form-item label="流程名" prop="name">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-input v-model="queryParams.name" placeholder="请输入流程名" clearable @keyup.enter.native="handleQuery"/>
|
2022-01-09 09:46:34 +08:00
|
|
|
</el-form-item>
|
2022-07-21 23:22:21 +08:00
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
|
<el-date-picker v-model="queryParams.createTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss" type="daterange"
|
|
|
|
range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:59:59']" />
|
2022-01-09 09:46:34 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
2022-01-09 09:46:34 +08:00
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<el-table v-loading="loading" :data="list">
|
2022-01-09 22:31:40 +08:00
|
|
|
<el-table-column label="任务编号" align="center" prop="id" width="320" fixed />
|
|
|
|
<el-table-column label="任务名称" align="center" prop="name" width="200" />
|
|
|
|
<el-table-column label="所属流程" align="center" prop="processInstance.name" width="200" />
|
2022-01-17 00:04:20 +08:00
|
|
|
<el-table-column label="流程发起人" align="center" prop="processInstance.startUserNickname" width="120" />
|
2022-01-09 22:31:40 +08:00
|
|
|
<el-table-column label="结果" align="center" prop="result">
|
2022-11-08 12:54:57 +08:00
|
|
|
<template v-slot="scope">
|
2022-03-20 01:21:09 +08:00
|
|
|
<dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT" :value="scope.row.result"/>
|
2022-01-09 22:31:40 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2022-05-01 23:18:50 +08:00
|
|
|
<el-table-column label="审批意见" align="center" prop="reason" width="200" />
|
2022-01-09 09:46:34 +08:00
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
2022-11-08 12:54:57 +08:00
|
|
|
<template v-slot="scope">
|
2022-01-09 09:46:34 +08:00
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="审批时间" align="center" prop="endTime" width="180">
|
2022-11-08 12:54:57 +08:00
|
|
|
<template v-slot="scope">
|
2022-01-09 09:46:34 +08:00
|
|
|
<span>{{ parseTime(scope.row.endTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2022-01-09 22:31:40 +08:00
|
|
|
<el-table-column label="耗时" align="center" prop="durationInMillis" width="180">
|
2022-11-08 12:54:57 +08:00
|
|
|
<template v-slot="scope">
|
2022-01-09 22:31:40 +08:00
|
|
|
<span>{{ getDateStar(scope.row.durationInMillis) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
2022-11-08 12:54:57 +08:00
|
|
|
<template v-slot="scope">
|
2022-01-23 00:43:17 +08:00
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleAudit(scope.row)"
|
|
|
|
v-hasPermi="['bpm:task:query']">详情</el-button>
|
2022-01-09 09:46:34 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<!-- 分页组件 -->
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {getDoneTaskPage} from '@/api/bpm/task'
|
2022-01-09 22:31:40 +08:00
|
|
|
import {getDate} from "@/utils/dateUtils";
|
2022-01-09 09:46:34 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Done",
|
|
|
|
components: {
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
2022-01-16 00:36:04 +08:00
|
|
|
// 已办任务列表
|
2022-01-09 09:46:34 +08:00
|
|
|
list: [],
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNo: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
name: null,
|
2022-07-21 23:22:21 +08:00
|
|
|
createTime: []
|
2022-01-09 09:46:34 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/** 查询列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
2022-07-21 23:22:21 +08:00
|
|
|
getDoneTaskPage(this.queryParams).then(response => {
|
2022-01-09 09:46:34 +08:00
|
|
|
this.list = response.data.list;
|
|
|
|
this.total = response.data.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNo = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
2022-01-09 22:31:40 +08:00
|
|
|
getDateStar(ms) {
|
|
|
|
return getDate(ms);
|
2022-01-17 12:53:43 +08:00
|
|
|
},
|
|
|
|
/** 处理审批按钮 */
|
|
|
|
handleAudit(row) {
|
|
|
|
this.$router.push({ path: "/bpm/process-instance/detail", query: { id: row.processInstance.id}});
|
|
|
|
},
|
2022-01-09 09:46:34 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|