| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <div class="app-container">
- <!-- 搜索工作栏 -->
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="流程名" prop="name">
- <el-input v-model="queryParams.name" placeholder="请输入流程名" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <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']" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <!-- 列表 -->
- <el-table v-loading="loading" :data="list" @row-click="handleAudit">
- <el-table-column label="任务编号" align="center" prop="id"/>
- <el-table-column label="流程名称" align="center" prop="processInstance.name" />
- <el-table-column label="流程发起人" align="center" prop="processInstance.startUser.nickname" />
- <el-table-column label="当前节点" align="center" prop="taskDefinitionKey" />
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
- <template v-slot="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页组件 -->
- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
- @pagination="getList"/>
- <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body v-loading="detailLoading">
- <async-biz-form-component :id="businessKey"></async-biz-form-component>
- </el-dialog>
- </div>
- </template>
- <script>
- import {getDoneTaskPage} from '@/api/bpm/task'
- import {getDate} from "@/utils/dateUtils";
- import Vue from "vue";
- export default {
- name: "BpmDoneTask",
- components: {
- },
- data() {
- return {
- detailLoading:false,
- title:'',
- //详情页面id
- businessKey:'',
- open: false,
- // 遮罩层
- loading: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 已办任务列表
- list: [],
- // 查询参数
- queryParams: {
- pageNo: 1,
- pageSize: 10,
- name: null,
- createTime: []
- },
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询列表 */
- getList() {
- this.loading = true;
- getDoneTaskPage(this.queryParams).then(response => {
- 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();
- },
- getDateStar(ms) {
- return getDate(ms);
- },
- /** 处理审批按钮 */
- handleAudit(row) {
- this.title = row.processInstance.name;
- console.log(row);
- this.businessKey = row.processInstance.businessKey;
- //将业务表单,注册为动态组件
- const path = row.processDefinition.formCustomViewPath;
- console.log("path:" + path)
- Vue.component("async-biz-form-component", function (resolve) {
- require([`@/views${path}`], resolve);
- });
- this.open = true;
- }
- }
- };
- </script>
|