add 添加流程实例列表

This commit is contained in:
gssong 2023-06-17 18:52:02 +08:00
parent e00ede94c5
commit b7f14586a6
2 changed files with 281 additions and 1 deletions

View File

@ -2,11 +2,37 @@ import request from '@/utils/request';
const baseUrl = import.meta.env.VITE_APP_BASE_API;
import { getToken } from '@/utils/auth';
/**
*
* @param query
* @returns {*}
*/
export const getProcessInstanceRunningByPage = (query: object) => {
return request({
url: '/workflow/processInstance/getProcessInstanceRunningByPage',
method: 'get',
params: query
});
};
/**
*
* @param query
* @returns {*}
*/
export const getProcessInstanceFinishByPage = (query: object) => {
return request({
url: '/workflow/processInstance/getProcessInstanceFinishByPage',
method: 'get',
params: query
});
};
/**
* id获取历史流程图
*/
export const getHistoryProcessImage = (processInstanceId: string) => {
return baseUrl + `/workflow/processInstance/getHistoryProcessImage/${processInstanceId}` + '?Authorization=Bearer ' + getToken()+'&t'+ Math.random()
return baseUrl + `/workflow/processInstance/getHistoryProcessImage/${processInstanceId}` + '?Authorization=Bearer ' + getToken() + '&t' + Math.random()
};
/**
@ -20,3 +46,40 @@ export const getHistoryRecord = (processInstanceId: string) => {
method: 'get'
});
};
/**
*
* @param data
* @returns
*/
export const deleteRuntimeProcessInst = (data: object) => {
return request({
url: `/workflow/processInstance/deleteRuntimeProcessInst`,
method: 'post',
data: data
});
};
/**
*
* @param processInstanceId id
* @returns
*/
export const deleteRuntimeProcessAndHisInst = (processInstanceId: string) => {
return request({
url: `/workflow/processInstance/deleteRuntimeProcessAndHisInst/${processInstanceId}`,
method: 'delete'
});
};
/**
*
* @param processInstanceId id
* @returns
*/
export const deleteFinishProcessAndHisInst = (processInstanceId: string) => {
return request({
url: `/workflow/processInstance/deleteFinishProcessAndHisInst/${processInstanceId}`,
method: 'delete'
});
};

View File

@ -0,0 +1,217 @@
<template>
<div class="p-2">
<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="running">运行中</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="120px">
<el-form-item label="流程定义名称" prop="name">
<el-input v-model="queryParams.name" placeholder="请输入流程定义名称" clearable @keyup.enter="handleQuery" />
</el-form-item>
<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">
<right-toolbar v-model:showSearch="showSearch" @queryTable="getProcessInstanceRunningList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" :data="processInstanceList" @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>
<el-table-column align="center" prop="processDefinitionVersion" label="版本号" width="90">
<template #default="scope"> v{{ scope.row.processDefinitionVersion }}.0</template>
</el-table-column>
<el-table-column align="center" prop="suspensionState" label="状态" min-width="70">
<template #default="scope">
<el-tag type="success" v-if="!scope.row.suspensionState">激活</el-tag>
<el-tag type="danger" v-else>挂起</el-tag>
</template>
</el-table-column>
<el-table-column align="center" prop="startTime" 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">
<el-col :span="1.5">
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleDeleteRunning(scope.row)">删除</el-button>
</el-col>
</el-row>
<el-row :gutter="10" class="mb8" v-if="tab === 'running'">
<el-col :span="1.5">
<el-popover trigger="click" :ref="`popoverRef${scope.$index}`" placement="left" :width="300">
<el-input resize="none" v-model="deleteReason" :rows="3" type="textarea" placeholder="请输入作废原因" />
<div style="text-align: right; margin: 5px 0px 0px 0px">
<el-button size="small" text @click="cancelPopover(scope.$index)">取消</el-button>
<el-button size="small" type="primary" @click="handleInvalid(scope.row)">确认</el-button>
</div>
<template #reference>
<el-button type="text" size="small" icon="el-icon-thumb">作废</el-button>
</template>
</el-popover>
</el-col>
</el-row>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize"
@pagination="getProcessInstanceRunningList"
/>
</el-card>
<!-- 审批记录 -->
<approvalRecord ref="approvalRecordRef" />
</div>
</template>
<script lang="ts" setup>
import {
getProcessInstanceRunningByPage,
getProcessInstanceFinishByPage,
deleteRuntimeProcessAndHisInst,
deleteFinishProcessAndHisInst,
deleteRuntimeProcessInst
} from '@/api/workflow/processInstance';
import { ComponentInternalInstance } from 'vue';
import ApprovalRecord from '@/components/Process/approvalRecord.vue';
//
const approvalRecordRef = ref<InstanceType<typeof ApprovalRecord>>();
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 processInstanceList = ref([]);
const queryFormRef = ref(ElForm);
const tab = ref('running');
//
const deleteReason = ref('');
//
const queryParams = ref<Record<string, any>>({
pageNum: 1,
pageSize: 10,
name: undefined
});
onMounted(() => {
getProcessInstanceRunningList();
});
//
const handleApprovalRecord = (row: any) => {
if (approvalRecordRef.value) {
approvalRecordRef.value.init(row.id);
}
};
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
if ('running' === tab.value) {
getProcessInstanceRunningList();
} else {
getProcessInstanceFinishList();
}
};
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields();
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;
};
//
const getProcessInstanceRunningList = () => {
loading.value = true;
getProcessInstanceRunningByPage(queryParams.value).then((resp) => {
processInstanceList.value = resp.rows;
total.value = resp.total;
loading.value = false;
});
};
//
const getProcessInstanceFinishList = () => {
loading.value = true;
getProcessInstanceFinishByPage(queryParams.value).then((resp) => {
processInstanceList.value = resp.rows;
total.value = resp.total;
loading.value = false;
});
};
/** 删除按钮操作 */
const handleDeleteRunning = async (row: any) => {
await proxy?.$modal.confirm('是否确认删除业务id为【' + row.businessKey + '】的数据项?');
loading.value = true;
if ('running' === tab.value) {
await deleteRuntimeProcessAndHisInst(row.id).finally(() => (loading.value = false));
getProcessInstanceRunningList();
} else {
await deleteFinishProcessAndHisInst(row.id).finally(() => (loading.value = false));
getProcessInstanceFinishList();
}
proxy?.$modal.msgSuccess('删除成功');
};
const changeTab = async (data: string) => {
if ('running' === data) {
getProcessInstanceRunningList();
} else {
getProcessInstanceFinishList();
}
};
/** 作废按钮操作 */
const handleInvalid = async (row: any) => {
await proxy?.$modal.confirm('是否确认作废业务id为【' + row.businessKey + '】的数据项?');
loading.value = true;
if ('running' === tab.value) {
let param = {
processInstanceId: row.id,
deleteReason: deleteReason.value
};
await deleteRuntimeProcessInst(param).finally(() => (loading.value = false));
getProcessInstanceRunningList();
proxy?.$modal.msgSuccess('操作成功');
}
};
const cancelPopover = async (index: any) => {
(proxy?.$refs[`popoverRef${index}`] as any).hide(); //
};
</script>