2023-06-17 18:52:02 +08:00
|
|
|
<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">
|
2023-06-17 19:05:11 +08:00
|
|
|
<el-tag type="success" v-if="scope.row.suspended">激活</el-tag>
|
2023-06-17 18:52:02 +08:00
|
|
|
<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>
|