221 lines
8.6 KiB
Vue
Raw Normal View History

2023-06-12 22:05:44 +08:00
<template>
<div class="p-2">
2023-06-25 20:52:52 +08:00
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<div class="mb-[10px]">
<el-card shadow="hover">
<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>
</center>
</el-card>
</div>
</transition>
2023-06-12 22:05:44 +08:00
<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">
2023-06-25 20:52:52 +08:00
<el-input v-model="queryParams.name" placeholder="请输入任务名称" clearable @keyup.enter="handleQuery" />
2023-06-12 22:05:44 +08:00
</el-form-item>
<el-form-item label="流程定义名称" label-width="100" prop="name">
<el-input v-model="queryParams.processDefinitionName" placeholder="请输入流程定义名称" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="流程定义KEY" label-width="100" prop="name">
<el-input v-model="queryParams.processDefinitionKey" placeholder="请输入流程定义KEY" clearable @keyup.enter="handleQuery" />
</el-form-item>
2023-06-12 22:05:44 +08:00
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
</el-card>
</div>
</transition>
<el-card shadow="hover">
<template #header>
<el-row :gutter="10" class="mb8">
2023-06-25 20:52:52 +08:00
<right-toolbar v-model:showSearch="showSearch" @queryTable="handleQuery"></right-toolbar>
2023-06-12 22:05:44 +08:00
</el-row>
</template>
<el-table v-loading="loading" :data="taskList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column fixed align="center" type="index" label="序号" width="50"></el-table-column>
<el-table-column fixed align="center" prop="processDefinitionName" label="流程定义名称"></el-table-column>
<el-table-column fixed align="center" prop="processDefinitionKey" label="流程定义KEY"></el-table-column>
2023-06-12 22:05:44 +08:00
<el-table-column fixed align="center" prop="name" label="任务名称"></el-table-column>
<el-table-column fixed align="center" prop="assigneeName" label="办理人">
2023-07-01 13:38:26 +08:00
<template #default="scope" v-if="tab === 'waiting'">
<template v-if="scope.row.participantVo && scope.row.assignee === null">
2023-07-01 13:38:26 +08:00
<el-tag type="success" v-for="(item,index) in scope.row.participantVo.candidateName" :key="index">
{{ item }}
</el-tag>
</template>
<template v-else>
<el-tag type="success">
{{ scope.row.assigneeName }}
</el-tag>
</template>
2023-07-01 13:38:26 +08:00
</template>
<template #default="scope" v-else-if="tab === 'finish'">
<el-tag type="success">
{{ scope.row.assigneeName }}
</el-tag>
2023-06-23 16:03:39 +08:00
</template>
</el-table-column>
2023-07-01 13:38:26 +08:00
<el-table-column align="center" prop="businessStatusName" label="流程状态" min-width="70">
2023-06-25 20:52:52 +08:00
<template #default="scope">
2023-07-01 13:38:26 +08:00
<el-tag type="success" v-if="tab === 'waiting'">{{scope.row.businessStatusName}}</el-tag>
<el-tag type="success" v-else>已完成</el-tag>
2023-06-25 20:52:52 +08:00
</template>
</el-table-column>
2023-06-12 22:05:44 +08:00
<el-table-column align="center" prop="createTime" label="创建时间" width="160"></el-table-column>
<el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width">
<template #default="scope">
<el-row :gutter="10" class="mb8">
2023-06-12 23:01:46 +08:00
<el-col :span="1.5">
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
2023-06-12 23:01:46 +08:00
</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-button type="text" size="small" icon="el-icon-thumb" @click="submitVerifyOpen(scope.row.id)">办理</el-button>
</el-col>
2023-07-01 13:38:26 +08:00
<el-col :span="1.5" v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === true">
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleReturnTask(scope.row.id)">归还</el-button>
</el-col>
<el-col :span="1.5" v-if="tab === 'waiting' && scope.row.participantVo && scope.row.participantVo.claim === false">
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleClaimTask(scope.row.id)">认领</el-button>
</el-col>
2023-06-12 22:05:44 +08:00
</el-row>
</template>
</el-table-column>
</el-table>
2023-06-25 20:52:52 +08:00
<pagination
v-show="total > 0"
:total="total"
v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize"
2023-07-01 13:38:26 +08:00
@pagination="handleQuery"
2023-06-25 20:52:52 +08:00
/>
2023-06-12 22:05:44 +08:00
</el-card>
<!-- 审批记录 -->
<approvalRecord ref="approvalRecordRef" />
<!-- 提交组件 -->
<submitVerify ref="submitVerifyRef" @submitCallback="handleQuery" />
2023-06-12 22:05:44 +08:00
</div>
</template>
2023-06-12 23:01:46 +08:00
<script lang="ts" setup>
import { getTaskWaitByPage, getTaskFinishByPage, claim, returnTask } from '@/api/workflow/task';
2023-06-12 22:05:44 +08:00
import { ComponentInternalInstance } from 'vue';
2023-06-12 23:01:46 +08:00
import ApprovalRecord from '@/components/Process/approvalRecord.vue';
import SubmitVerify from '@/components/Process/submitVerify.vue';
//提交组件
const submitVerifyRef = ref<InstanceType<typeof SubmitVerify>>();
//审批记录组件
2023-06-12 23:01:46 +08:00
const approvalRecordRef = ref<InstanceType<typeof ApprovalRecord>>();
2023-06-12 22:05:44 +08:00
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
// 遮罩层
const loading = ref(true);
// 选中数组
const ids = ref<Array<any>>([]);
// 非单个禁用
const single = ref(true);
// 非多个禁用
const multiple = ref(true);
// 显示搜索条件
const showSearch = ref(true);
// 总条数
const total = ref(0);
// 模型定义表格数据
const taskList = ref([]);
// 查询参数
const queryParams = ref<Record<string, any>>({
pageNum: 1,
pageSize: 10,
name: undefined,
processDefinitionName: undefined,
processDefinitionKey: undefined
2023-06-12 22:05:44 +08:00
});
2023-06-25 20:52:52 +08:00
const tab = ref('waiting');
2023-06-12 22:05:44 +08:00
onMounted(() => {
2023-06-25 20:52:52 +08:00
getWaitingList();
2023-06-12 22:05:44 +08:00
});
//审批记录
const handleApprovalRecord = (row: any) => {
2023-06-12 23:01:46 +08:00
if (approvalRecordRef.value) {
approvalRecordRef.value.init(row.processInstanceId);
2023-06-12 23:01:46 +08:00
}
};
2023-06-12 22:05:44 +08:00
/** 搜索按钮操作 */
const handleQuery = () => {
2023-06-25 20:52:52 +08:00
if ('waiting' === tab.value) {
getWaitingList();
} else {
getFinishList();
}
2023-06-12 22:05:44 +08:00
};
/** 重置按钮操作 */
const resetQuery = () => {
queryParams.value = {};
queryParams.value.pageNum = 1;
queryParams.value.pageSize = 10;
handleQuery();
};
// 多选框选中数据
const handleSelectionChange = (selection: any) => {
ids.value = selection.map((item: any) => item.id);
single.value = selection.length !== 1;
multiple.value = !selection.length;
};
2023-06-25 20:52:52 +08:00
const changeTab = async (data: string) => {
2023-07-01 13:38:26 +08:00
queryParams.value.pageNum = 1;
2023-06-25 20:52:52 +08:00
if ('waiting' === data) {
getWaitingList();
} else {
getFinishList();
}
};
2023-06-12 22:05:44 +08:00
//分页
2023-06-25 20:52:52 +08:00
const getWaitingList = () => {
2023-06-12 22:05:44 +08:00
loading.value = true;
getTaskWaitByPage(queryParams.value).then((resp) => {
taskList.value = resp.rows;
total.value = resp.total;
loading.value = false;
});
};
2023-06-25 20:52:52 +08:00
const getFinishList = () => {
loading.value = true;
getTaskFinishByPage(queryParams.value).then((resp) => {
taskList.value = resp.rows;
total.value = resp.total;
loading.value = false;
});
};
//提交
const submitVerifyOpen = async (id: string) => {
if (submitVerifyRef.value) {
submitVerifyRef.value.openDialog(true,id);
}
};
2023-07-01 13:38:26 +08:00
/** 认领任务 */
const handleClaimTask = async (taskId: string) => {
await claim(taskId).finally(() => (loading.value = false));
getWaitingList();
proxy?.$modal.msgSuccess('操作成功');
};
/** 归还任务 */
const handleReturnTask = async (taskId: string) => {
await returnTask(taskId).finally(() => (loading.value = false));
getWaitingList();
proxy?.$modal.msgSuccess('操作成功');
};
2023-06-12 22:05:44 +08:00
</script>