add 增加待办任务 接口类型,优化页面
This commit is contained in:
parent
bc6a6e4818
commit
fb7e3073d8
@ -1,11 +1,12 @@
|
|||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { TaskQuery, TaskVO } from '@/api/workflow/task/types';
|
||||||
/**
|
/**
|
||||||
* 查询待办列表
|
* 查询待办列表
|
||||||
* @param query
|
* @param query
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export const getTaskWaitByPage = (query: object) => {
|
export const getTaskWaitByPage = (query: TaskQuery): AxiosPromise<TaskVO[]> => {
|
||||||
return request({
|
return request({
|
||||||
url: '/workflow/task/getTaskWaitByPage',
|
url: '/workflow/task/getTaskWaitByPage',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
@ -18,7 +19,7 @@ export const getTaskWaitByPage = (query: object) => {
|
|||||||
* @param query
|
* @param query
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export const getTaskFinishByPage = (query: object) => {
|
export const getTaskFinishByPage = (query: TaskQuery): AxiosPromise<TaskVO[]> => {
|
||||||
return request({
|
return request({
|
||||||
url: '/workflow/task/getTaskFinishByPage',
|
url: '/workflow/task/getTaskFinishByPage',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
|
39
src/api/workflow/task/types.ts
Normal file
39
src/api/workflow/task/types.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
export interface TaskQuery extends PageQuery {
|
||||||
|
name: string;
|
||||||
|
processDefinitionKey: string;
|
||||||
|
processDefinitionName: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ParticipantVo {
|
||||||
|
groupIds?: string[] | number[];
|
||||||
|
candidate: string[] | number[];
|
||||||
|
candidateName: string[];
|
||||||
|
claim: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TaskVO extends BaseEntity {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
description?: string;
|
||||||
|
priority: number;
|
||||||
|
owner?: string;
|
||||||
|
assignee?: string | number;
|
||||||
|
assigneeName?: string;
|
||||||
|
processInstanceId: string;
|
||||||
|
executionId: string;
|
||||||
|
taskDefinitionId?: any;
|
||||||
|
processDefinitionId: string;
|
||||||
|
endTime?: string;
|
||||||
|
taskDefinitionKey: string;
|
||||||
|
dueDate?: string;
|
||||||
|
category?: any;
|
||||||
|
parentTaskId?: any;
|
||||||
|
tenantId: string;
|
||||||
|
claimTime?: string;
|
||||||
|
businessStatus: string;
|
||||||
|
businessStatusName: string;
|
||||||
|
processDefinitionName: string;
|
||||||
|
processDefinitionKey: string;
|
||||||
|
participantVo: ParticipantVo;
|
||||||
|
multiInstance: boolean;
|
||||||
|
}
|
@ -1,21 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="p-2">
|
<div class="p-2">
|
||||||
|
<div class="mb-[10px]">
|
||||||
|
<el-card shadow="hover" class="text-center">
|
||||||
|
<el-radio-group v-model="tab" @change="changeTab(tab)">
|
||||||
|
<el-radio-button label="waiting">待办任务</el-radio-button>
|
||||||
|
<el-radio-button label="finish">已办任务</el-radio-button>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
<div class="mb-[10px]">
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
<el-card shadow="hover">
|
<el-card shadow="hover">
|
||||||
<center>
|
<el-form v-show="showSearch" ref="queryFormRef" :model="queryParams" :inline="true" label-width="68px">
|
||||||
<el-radio-group v-model="tab" @change="changeTab(tab)">
|
|
||||||
<el-radio-button label="waiting">待办任务</el-radio-button>
|
|
||||||
<el-radio-button label="finish">已办任务</el-radio-button>
|
|
||||||
</el-radio-group>
|
|
||||||
</center>
|
|
||||||
</el-card>
|
|
||||||
</div>
|
|
||||||
</transition>
|
|
||||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
||||||
<div class="mb-[10px]" v-show="showSearch">
|
|
||||||
<el-card shadow="hover">
|
|
||||||
<el-form :model="queryParams" ref="queryFormRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
||||||
<el-form-item label="任务名称" prop="name">
|
<el-form-item label="任务名称" prop="name">
|
||||||
<el-input v-model="queryParams.name" placeholder="请输入任务名称" clearable @keyup.enter="handleQuery" />
|
<el-input v-model="queryParams.name" placeholder="请输入任务名称" clearable @keyup.enter="handleQuery" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -36,7 +32,7 @@
|
|||||||
<el-card shadow="hover">
|
<el-card shadow="hover">
|
||||||
<template #header>
|
<template #header>
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="handleQuery"></right-toolbar>
|
<right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -47,9 +43,9 @@
|
|||||||
<el-table-column fixed align="center" prop="processDefinitionKey" label="流程定义KEY"></el-table-column>
|
<el-table-column fixed align="center" prop="processDefinitionKey" label="流程定义KEY"></el-table-column>
|
||||||
<el-table-column fixed align="center" prop="name" label="任务名称"></el-table-column>
|
<el-table-column fixed align="center" prop="name" label="任务名称"></el-table-column>
|
||||||
<el-table-column fixed align="center" prop="assigneeName" label="办理人">
|
<el-table-column fixed align="center" prop="assigneeName" label="办理人">
|
||||||
<template #default="scope" v-if="tab === 'waiting'">
|
<template v-if="tab === 'waiting'" #default="scope">
|
||||||
<template v-if="scope.row.participantVo && scope.row.assignee === null">
|
<template v-if="scope.row.participantVo && scope.row.assignee === null">
|
||||||
<el-tag type="success" v-for="(item, index) in scope.row.participantVo.candidateName" :key="index">
|
<el-tag v-for="(item, index) in scope.row.participantVo.candidateName" :key="index" type="success">
|
||||||
{{ item }}
|
{{ item }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
@ -59,7 +55,7 @@
|
|||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template #default="scope" v-else-if="tab === 'finish'">
|
<template v-else-if="tab === 'finish'" #default="scope">
|
||||||
<el-tag type="success">
|
<el-tag type="success">
|
||||||
{{ scope.row.assigneeName }}
|
{{ scope.row.assigneeName }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
@ -67,8 +63,8 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" prop="businessStatusName" label="流程状态" min-width="70">
|
<el-table-column align="center" prop="businessStatusName" label="流程状态" min-width="70">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag type="success" v-if="tab === 'waiting'">{{ scope.row.businessStatusName }}</el-tag>
|
<el-tag v-if="tab === 'waiting'" type="success">{{ scope.row.businessStatusName }}</el-tag>
|
||||||
<el-tag type="success" v-else>已完成</el-tag>
|
<el-tag v-else type="success">已完成</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" prop="createTime" label="创建时间" width="160"></el-table-column>
|
<el-table-column align="center" prop="createTime" label="创建时间" width="160"></el-table-column>
|
||||||
@ -76,27 +72,38 @@
|
|||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="text" size="small" icon="Document" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
|
<el-button link type="primary" size="small" icon="Document" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5" v-if="tab === 'waiting' && scope.row.participantVo && (scope.row.participantVo.claim === null || scope.row.participantVo.claim === true)">
|
<el-col
|
||||||
<el-button type="text" size="small" icon="Edit" @click="submitVerifyOpen(scope.row.id)">办理</el-button>
|
v-if="
|
||||||
|
tab === 'waiting' && scope.row.participantVo && (scope.row.participantVo.claim === null || scope.row.participantVo.claim === true)
|
||||||
|
"
|
||||||
|
:span="1.5"
|
||||||
|
>
|
||||||
|
<el-button link type="primary" size="small" icon="Edit" @click="submitVerifyOpen(scope.row.id)">办理</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5" v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === true">
|
<el-col v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === true" :span="1.5">
|
||||||
<el-button type="text" size="small" icon="Document" @click="handleReturnTask(scope.row.id)">归还</el-button>
|
<el-button link type="primary" size="small" icon="Document" @click="handleReturnTask(scope.row.id)">归还</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5" v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === false">
|
<el-col v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === false" :span="1.5">
|
||||||
<el-button type="text" size="small" icon="Document" @click="handleClaimTask(scope.row.id)">认领</el-button>
|
<el-button link type="primary" size="small" icon="Document" @click="handleClaimTask(scope.row.id)">认领</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="handleQuery" />
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
v-model:page="queryParams.pageNum"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@pagination="handleQuery"
|
||||||
|
/>
|
||||||
</el-card>
|
</el-card>
|
||||||
<!-- 审批记录 -->
|
<!-- 审批记录 -->
|
||||||
<approvalRecord ref="approvalRecordRef" />
|
<approvalRecord ref="approvalRecordRef" />
|
||||||
<!-- 提交组件 -->
|
<!-- 提交组件 -->
|
||||||
<submitVerify ref="submitVerifyRef" @submitCallback="handleQuery" />
|
<submitVerify ref="submitVerifyRef" @submit-callback="handleQuery" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -105,10 +112,12 @@ import { getTaskWaitByPage, getTaskFinishByPage, claim, returnTask } from '@/api
|
|||||||
import { ComponentInternalInstance } from 'vue';
|
import { ComponentInternalInstance } from 'vue';
|
||||||
import ApprovalRecord from '@/components/Process/approvalRecord.vue';
|
import ApprovalRecord from '@/components/Process/approvalRecord.vue';
|
||||||
import SubmitVerify from '@/components/Process/submitVerify.vue';
|
import SubmitVerify from '@/components/Process/submitVerify.vue';
|
||||||
|
import { TaskQuery } from '@/api/workflow/task/types';
|
||||||
//提交组件
|
//提交组件
|
||||||
const submitVerifyRef = ref<InstanceType<typeof SubmitVerify>>();
|
const submitVerifyRef = ref<InstanceType<typeof SubmitVerify>>();
|
||||||
//审批记录组件
|
//审批记录组件
|
||||||
const approvalRecordRef = ref<InstanceType<typeof ApprovalRecord>>();
|
const approvalRecordRef = ref<InstanceType<typeof ApprovalRecord>>();
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
@ -125,7 +134,7 @@ const total = ref(0);
|
|||||||
// 模型定义表格数据
|
// 模型定义表格数据
|
||||||
const taskList = ref([]);
|
const taskList = ref([]);
|
||||||
// 查询参数
|
// 查询参数
|
||||||
const queryParams = ref<Record<string, any>>({
|
const queryParams = ref<TaskQuery>({
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
name: undefined,
|
name: undefined,
|
||||||
@ -152,7 +161,7 @@ const handleQuery = () => {
|
|||||||
};
|
};
|
||||||
/** 重置按钮操作 */
|
/** 重置按钮操作 */
|
||||||
const resetQuery = () => {
|
const resetQuery = () => {
|
||||||
queryParams.value = {};
|
queryFormRef.value?.resetFields();
|
||||||
queryParams.value.pageNum = 1;
|
queryParams.value.pageNum = 1;
|
||||||
queryParams.value.pageSize = 10;
|
queryParams.value.pageSize = 10;
|
||||||
handleQuery();
|
handleQuery();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user