<script lang="ts" setup>
|
// TODO @jason:你感觉要拆分下,按照表单么?
|
import type { FormInstance } from 'ant-design-vue';
|
import type { Rule } from 'ant-design-vue/es/form';
|
|
import type { BpmProcessInstanceApi } from '#/api/bpm/processInstance';
|
import type { SystemUserApi } from '#/api/system/user';
|
|
import { computed, nextTick, reactive, ref, watch } from 'vue';
|
import { useRouter } from 'vue-router';
|
|
import { useVbenModal } from '@vben/common-ui';
|
import {
|
BpmCandidateStrategyEnum,
|
BpmModelFormType,
|
BpmNodeTypeEnum,
|
BpmProcessInstanceStatus,
|
BpmTaskOperationButtonTypeEnum,
|
BpmTaskStatusEnum,
|
OPERATION_BUTTON_NAME,
|
} from '@vben/constants';
|
import { IconifyIcon } from '@vben/icons';
|
import { useUserStore } from '@vben/stores';
|
import { isEmpty } from '@vben/utils';
|
|
import { FilePreviewModal, useFilePreview } from '#/components/file-preview';
|
|
import FormCreate from '@form-create/ant-design-vue';
|
import { until, useDebounceFn } from '@vueuse/core';
|
import {
|
Alert,
|
Button,
|
Card,
|
Form,
|
FormItem,
|
Image,
|
message,
|
Popover,
|
Select,
|
SelectOption,
|
Space,
|
Textarea,
|
} from 'ant-design-vue';
|
|
import {
|
cancelProcessInstanceByStartUser,
|
getNextApprovalNodes,
|
} from '#/api/bpm/processInstance';
|
import {
|
approveTask,
|
copyTask,
|
delegateTask,
|
getTaskListByReturn,
|
rejectTask,
|
returnTask,
|
signCreateTask,
|
signDeleteTask,
|
transferTask,
|
} from '#/api/bpm/task';
|
import { setConfAndFields2 } from '#/components/form-create';
|
import { FileUpload } from '#/components/upload';
|
import { $t } from '#/locales';
|
|
import Signature from './signature.vue';
|
import ProcessInstanceTimeline from './time-line.vue';
|
|
defineOptions({ name: 'ProcessInstanceBtnContainer' });
|
|
const props = defineProps<{
|
normalForm: any; // 流程表单 formCreate
|
normalFormApi: any; // 流程表单 formCreate Api
|
processDefinition: any; // 流程定义信息
|
processInstance: any; // 流程实例信息
|
userOptions: SystemUserApi.User[];
|
writableFields: string[]; // 流程表单可以编辑的字段
|
}>(); // 当前登录的编号
|
const emit = defineEmits(['success']);
|
|
const [SignatureModal, signatureModalApi] = useVbenModal({
|
connectedComponent: Signature,
|
destroyOnClose: true,
|
});
|
|
const router = useRouter();
|
const userStore = useUserStore();
|
const userId = userStore.userInfo?.id;
|
const formLoading = ref(false); // 表单加载中
|
const popOverVisible: any = ref({
|
approve: false,
|
reject: false,
|
transfer: false,
|
delegate: false,
|
addSign: false,
|
return: false,
|
copy: false,
|
cancel: false,
|
deleteSign: false,
|
}); // 气泡卡是否展示
|
const returnList = ref([] as any); // 退回节点
|
const APPROVAL_ATTACHMENT_FILE_TYPES = [
|
'doc',
|
'docx',
|
'xls',
|
'xlsx',
|
'ppt',
|
'pptx',
|
'txt',
|
'pdf',
|
'jpg',
|
'jpeg',
|
'png',
|
'gif',
|
'bmp',
|
'webp',
|
];
|
const APPROVAL_ATTACHMENT_FILE_SIZE = 5;
|
const APPROVAL_ATTACHMENT_DIRECTORY = 'bpm/task-attachment';
|
|
/** 创建流程表达式 */
|
function openSignatureModal() {
|
signatureModalApi.setData(null).open();
|
}
|
|
// ========== 审批信息 ==========
|
const runningTask = ref<any>(); // 运行中的任务
|
const approveForm = ref<any>({}); // 审批通过时,额外的补充信息
|
const approveFormFApi = ref<any>({}); // approveForms 的 fAPi
|
const nodeTypeName = ref('审批'); // 节点类型名称
|
|
const reasonRequire = ref();
|
const approveFormRef = ref<FormInstance>(); // 审批通过意见表单
|
// @ts-expect-error: template ref is retained for future provider expansion
|
const approveSignFormRef = ref();
|
const nextAssigneesActivityNode = ref<BpmProcessInstanceApi.ApprovalNodeInfo[]>(
|
[],
|
); // 下一个审批节点信息
|
const nextAssigneesTimelineRef = ref(); // 下一个节点审批人时间线组件的引用
|
let nextApprovalRequestId = 0; // 请求序号;onChange 高频触发时,丢弃过期请求结果
|
let pendingNextNodesTask: null | Promise<unknown> = null; // 跟踪 onChange 触发的最新一轮重算,提交前需 await 等其完成
|
const approveReasonForm: any = reactive({
|
reason: '',
|
signPicUrl: '',
|
nextAssignees: {},
|
attachments: [],
|
});
|
const approveReasonRule: Record<string, any> = computed(() => {
|
return {
|
reason: [
|
{
|
required: reasonRequire.value,
|
message: `${nodeTypeName.value}意见不能为空`,
|
trigger: 'blur',
|
},
|
],
|
signPicUrl: [
|
{ required: true, message: '签名不能为空', trigger: 'change' },
|
],
|
nextAssignees: [
|
{ required: true, message: '审批人不能为空', trigger: 'blur' },
|
],
|
};
|
});
|
|
const rejectFormRef = ref<FormInstance>();
|
const rejectReasonForm = reactive({
|
reason: '',
|
attachments: [],
|
}); // 拒绝表单
|
const rejectReasonRule: any = computed(() => {
|
return {
|
reason: [
|
{
|
required: reasonRequire.value,
|
message: '审批意见不能为空',
|
trigger: 'blur',
|
},
|
],
|
} as Record<string, Rule[]>;
|
});
|
|
const copyFormRef = ref<FormInstance>(); // 抄送表单
|
const copyForm = reactive({
|
copyUserIds: [],
|
copyReason: '',
|
});
|
const copyFormRule: Record<string, Rule[]> = reactive({
|
copyUserIds: [
|
{ required: true, message: '抄送人不能为空', trigger: 'change' },
|
],
|
});
|
|
const transferFormRef = ref<FormInstance>(); // 转办表单
|
const transferForm = reactive({
|
assigneeUserId: undefined,
|
reason: '',
|
});
|
const transferFormRule: Record<string, Rule[]> = reactive({
|
assigneeUserId: [
|
{ required: true, message: '新审批人不能为空', trigger: 'change' },
|
],
|
reason: [{ required: true, message: '审批意见不能为空', trigger: 'blur' }],
|
});
|
|
const delegateFormRef = ref<FormInstance>(); // 委派表单
|
const delegateForm = reactive({
|
delegateUserId: undefined,
|
reason: '',
|
});
|
const delegateFormRule: Record<string, Rule[]> = reactive({
|
delegateUserId: [
|
{ required: true, message: '接收人不能为空', trigger: 'change' },
|
],
|
reason: [{ required: true, message: '审批意见不能为空', trigger: 'blur' }],
|
});
|
|
const addSignFormRef = ref<FormInstance>(); // 加签表单
|
const addSignForm = reactive({
|
addSignUserIds: undefined,
|
reason: '',
|
});
|
const addSignFormRule: Record<string, Rule[]> = reactive({
|
addSignUserIds: [
|
{ required: true, message: '加签处理人不能为空', trigger: 'change' },
|
],
|
reason: [{ required: true, message: '审批意见不能为空', trigger: 'blur' }],
|
});
|
|
const deleteSignFormRef = ref<FormInstance>(); // 减签表单
|
const deleteSignForm = reactive({
|
deleteSignTaskId: undefined,
|
reason: '',
|
});
|
const deleteSignFormRule: Record<string, Rule[]> = reactive({
|
deleteSignTaskId: [
|
{ required: true, message: '减签人员不能为空', trigger: 'change' },
|
],
|
reason: [{ required: true, message: '审批意见不能为空', trigger: 'blur' }],
|
});
|
|
const returnFormRef = ref<FormInstance>(); // 退回表单
|
const returnForm = reactive({
|
targetTaskDefinitionKey: undefined,
|
returnReason: '',
|
});
|
const returnFormRule: Record<string, Rule[]> = reactive({
|
targetTaskDefinitionKey: [
|
{ required: true, message: '退回节点不能为空', trigger: 'change' },
|
],
|
returnReason: [
|
{ required: true, message: '退回理由不能为空', trigger: 'blur' },
|
],
|
});
|
|
const cancelFormRef = ref<FormInstance>(); // 取消表单
|
const cancelForm = reactive({
|
cancelReason: '',
|
});
|
const cancelFormRule: Record<string, Rule[]> = reactive({
|
cancelReason: [
|
{ required: true, message: '取消理由不能为空', trigger: 'blur' },
|
],
|
});
|
|
/** 监听 approveFormFApis,实现它对应的 form-create 初始化后,隐藏掉对应的表单提交按钮 */
|
watch(
|
() => approveFormFApi.value,
|
(val) => {
|
val?.btn?.show(false);
|
val?.resetBtn?.show(false);
|
},
|
{
|
deep: true,
|
},
|
);
|
|
/** 弹出气泡卡 */
|
async function openPopover(type: string) {
|
if (type === 'approve') {
|
// 校验流程表单
|
const valid = await validateNormalForm();
|
if (!valid) {
|
message.warning('表单校验不通过,请先完善表单!!');
|
return;
|
}
|
}
|
if (type === 'return') {
|
// 获取退回节点
|
returnList.value = await getTaskListByReturn(runningTask.value.id);
|
if (returnList.value.length === 0) {
|
message.warning('当前没有可退回的节点');
|
return;
|
}
|
}
|
Object.keys(popOverVisible.value).forEach((item) => {
|
if (popOverVisible.value[item]) popOverVisible.value[item] = item === type;
|
});
|
if (type === 'approve') {
|
// 当前任务有节点表单时,等 form-create 的 fApi 就绪后再计算下一个节点;
|
// 没有节点表单时,approveFormFApi 永远不会被赋值,跳过等待
|
if (runningTask.value?.formId > 0) {
|
// 1s 兜底超时;超时 until 会抛错,这里静默吞掉,让首次计算照常进行
|
await until(() => typeof approveFormFApi.value?.validate === 'function')
|
.toBeTruthy({ timeout: 1000 })
|
.catch(() => {});
|
}
|
// 初始化下一个审批人表单字段
|
await initNextAssigneesFormField();
|
}
|
}
|
|
/** 关闭气泡卡 */
|
function closePopover(type: string, formRef: any | FormInstance) {
|
if (formRef) {
|
formRef.resetFields();
|
}
|
if (type === 'approve') {
|
approveReasonForm.reason = '';
|
approveReasonForm.attachments = [];
|
approveReasonForm.signPicUrl = '';
|
} else if (type === 'reject') {
|
rejectReasonForm.reason = '';
|
rejectReasonForm.attachments = [];
|
}
|
if (popOverVisible.value[type]) popOverVisible.value[type] = false;
|
nextAssigneesActivityNode.value = [];
|
// 清理 Timeline 组件中的自定义审批人数据
|
if (nextAssigneesTimelineRef.value) {
|
nextAssigneesTimelineRef.value.batchSetCustomApproveUsers({});
|
}
|
}
|
|
/** 流程通过时,根据表单变量查询新的流程节点,判断下一个节点类型是否为自选审批人 */
|
async function initNextAssigneesFormField() {
|
// 记录当前请求序号;如果在等待响应期间又有新请求发出,本次结果作废
|
const requestId = ++nextApprovalRequestId;
|
// 获取修改的流程变量, 暂时只支持流程表单
|
const variables = getUpdatedProcessInstanceVariables();
|
const data = await getNextApprovalNodes({
|
processInstanceId: props.processInstance.id,
|
taskId: runningTask.value.id,
|
processVariablesStr: JSON.stringify(variables),
|
});
|
// 已有更新的请求发出,丢弃本次过期结果,避免把旧分支节点回写到当前列表
|
if (requestId !== nextApprovalRequestId) {
|
return;
|
}
|
// 在最新结果到达时再清空,避免请求期间出现节点信息抖动
|
nextAssigneesActivityNode.value = [];
|
if (data && data.length > 0) {
|
const customApproveUsersData: Record<string, any[]> = {}; // 用于收集需要设置到 Timeline 组件的自定义审批人数据
|
data.forEach((node: BpmProcessInstanceApi.ApprovalNodeInfo) => {
|
if (
|
// 情况一:当前节点没有审批人,并且是发起人自选
|
(isEmpty(node.tasks) &&
|
isEmpty(node.candidateUsers) &&
|
BpmCandidateStrategyEnum.START_USER_SELECT ===
|
node.candidateStrategy) ||
|
// 情况二:当前节点是审批人自选
|
(isEmpty(node.candidateUsers) &&
|
BpmCandidateStrategyEnum.APPROVE_USER_SELECT === node.candidateStrategy)
|
) {
|
nextAssigneesActivityNode.value.push(node);
|
}
|
|
// 如果节点有 candidateUsers,设置到 customApproveUsers 中
|
if (node.candidateUsers && node.candidateUsers.length > 0) {
|
customApproveUsersData[node.id] = node.candidateUsers;
|
}
|
});
|
|
// 将 candidateUsers 设置到 Timeline 组件中
|
await nextTick(); // 等待下一个 tick,确保 Timeline 组件已经渲染
|
if (
|
nextAssigneesTimelineRef.value &&
|
Object.keys(customApproveUsersData).length > 0
|
) {
|
nextAssigneesTimelineRef.value.batchSetCustomApproveUsers(
|
customApproveUsersData,
|
);
|
}
|
}
|
}
|
|
/** onChange 高频触发时合并 300ms 内的连续按键,减少网关查询请求 */
|
const debouncedInitNextAssigneesFormField = useDebounceFn(
|
initNextAssigneesFormField,
|
300,
|
);
|
|
/** 选择下一个节点的审批人 */
|
function selectNextAssigneesConfirm(id: string, userList: any[]) {
|
approveReasonForm.nextAssignees[id] = userList?.map((item: any) => item.id);
|
}
|
|
/** 审批通过时,校验每个自选审批人的节点是否都已配置了审批人 */
|
function validateNextAssignees() {
|
if (Object.keys(nextAssigneesActivityNode.value).length === 0) {
|
return true;
|
}
|
// 如果需要自选审批人,则校验每个节点是否都已配置审批人
|
for (const item of nextAssigneesActivityNode.value) {
|
if (isEmpty(item.candidateUsers) && isEmpty(approveReasonForm.nextAssignees[item.id])) {
|
message.warning('下一个节点的审批人不能为空!');
|
return false;
|
}
|
}
|
return true;
|
}
|
|
/** 处理审批通过和不通过的操作 */
|
async function handleAudit(pass: boolean, formRef: FormInstance | undefined) {
|
formLoading.value = true;
|
try {
|
// 校验表单
|
if (!formRef) return;
|
await formRef?.validate();
|
// 校验流程表单必填字段
|
const valid = await validateNormalForm();
|
if (!valid) {
|
message.warning('表单校验不通过,请先完善表单!!');
|
return;
|
}
|
|
if (pass) {
|
// 等待 onChange 触发的最新一轮重算落地,避免拿旧分支节点 + 旧审批人选择 + 新表单变量的错配组合提交
|
if (pendingNextNodesTask) {
|
await pendingNextNodesTask;
|
}
|
const nextAssigneesValid = validateNextAssignees();
|
if (!nextAssigneesValid) return;
|
const variables = getUpdatedProcessInstanceVariables();
|
// 审批通过数据
|
const data = {
|
id: runningTask.value.id,
|
reason: approveReasonForm.reason,
|
attachments: approveReasonForm.attachments,
|
variables, // 审批通过, 把修改的字段值赋于流程实例变量
|
nextAssignees: approveReasonForm.nextAssignees, // 下个自选节点选择的审批人信息
|
} as any;
|
// 签名
|
if (runningTask.value.signEnable) {
|
data.signPicUrl = approveReasonForm.signPicUrl;
|
}
|
// 多表单处理:节点表单需要校验;变量已经在 getUpdatedProcessInstanceVariables 中合并到 data.variables,无需再覆盖
|
const formCreateApi = approveFormFApi.value;
|
if (Object.keys(formCreateApi)?.length > 0) {
|
await formCreateApi.validate();
|
}
|
await approveTask(data);
|
approveReasonForm.reason = '';
|
approveReasonForm.attachments = [];
|
approveReasonForm.signPicUrl = '';
|
popOverVisible.value.approve = false;
|
nextAssigneesActivityNode.value = [];
|
// 清理 Timeline 组件中的自定义审批人数据
|
if (nextAssigneesTimelineRef.value) {
|
nextAssigneesTimelineRef.value.batchSetCustomApproveUsers({});
|
}
|
message.success('审批通过成功');
|
} else {
|
// 审批不通过数据
|
const data = {
|
id: runningTask.value.id,
|
reason: rejectReasonForm.reason,
|
attachments: rejectReasonForm.attachments,
|
};
|
await rejectTask(data);
|
rejectReasonForm.reason = '';
|
rejectReasonForm.attachments = [];
|
popOverVisible.value.reject = false;
|
message.success('审批不通过成功');
|
}
|
// 重置表单
|
formRef.resetFields();
|
// 加载最新数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理抄送 */
|
async function handleCopy() {
|
formLoading.value = true;
|
try {
|
// 1. 校验表单
|
if (!copyFormRef.value) return;
|
await copyFormRef.value.validate();
|
// 2. 提交抄送
|
const data = {
|
id: runningTask.value.id,
|
reason: copyForm.copyReason,
|
copyUserIds: copyForm.copyUserIds,
|
};
|
await copyTask(data);
|
copyFormRef.value.resetFields();
|
popOverVisible.value.copy = false;
|
message.success($t('ui.actionMessage.operationSuccess'));
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理转交 */
|
async function handleTransfer() {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!transferFormRef.value) {
|
return;
|
}
|
await transferFormRef.value.validate();
|
// 1.2 提交转交
|
const data = {
|
id: runningTask.value.id,
|
reason: transferForm.reason,
|
assigneeUserId: transferForm.assigneeUserId,
|
};
|
await transferTask(data);
|
transferFormRef.value.resetFields();
|
popOverVisible.value.transfer = false;
|
message.success($t('ui.actionMessage.operationSuccess'));
|
// 2. 加载最新数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理委派 */
|
async function handleDelegate() {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!delegateFormRef.value) return;
|
await delegateFormRef.value.validate();
|
// 1.2 处理委派
|
const data = {
|
id: runningTask.value.id,
|
reason: delegateForm.reason,
|
delegateUserId: delegateForm.delegateUserId,
|
};
|
await delegateTask(data);
|
popOverVisible.value.delegate = false;
|
delegateFormRef.value.resetFields();
|
message.success($t('ui.actionMessage.operationSuccess'));
|
// 2. 加载最新数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理加签 */
|
async function handlerAddSign(type: string) {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!addSignFormRef.value) return;
|
await addSignFormRef.value.validate();
|
// 1.2 提交加签
|
const data = {
|
id: runningTask.value.id,
|
type,
|
reason: addSignForm.reason,
|
userIds: addSignForm.addSignUserIds,
|
};
|
await signCreateTask(data);
|
message.success($t('ui.actionMessage.operationSuccess'));
|
addSignFormRef.value.resetFields();
|
popOverVisible.value.addSign = false;
|
// 2 加载最新数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理退回 */
|
async function handleReturn() {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!returnFormRef.value) return;
|
await returnFormRef.value.validate();
|
// 1.2 提交退回
|
const data = {
|
id: runningTask.value.id,
|
reason: returnForm.returnReason,
|
targetTaskDefinitionKey: returnForm.targetTaskDefinitionKey,
|
};
|
await returnTask(data);
|
popOverVisible.value.return = false;
|
returnFormRef.value.resetFields();
|
message.success($t('ui.actionMessage.operationSuccess'));
|
// 2 重新加载数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理取消 */
|
async function handleCancel() {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!cancelFormRef.value) return;
|
await cancelFormRef.value.validate();
|
// 1.2 提交取消
|
await cancelProcessInstanceByStartUser(
|
props.processInstance.id,
|
cancelForm.cancelReason,
|
);
|
popOverVisible.value.return = false;
|
message.success($t('ui.actionMessage.operationSuccess'));
|
cancelFormRef.value.resetFields();
|
// 2 重新加载数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 处理再次提交 */
|
async function handleReCreate() {
|
// 跳转发起流程界面
|
await router.push({
|
name: 'BpmProcessInstanceCreate',
|
query: { processInstanceId: props.processInstance?.id },
|
});
|
}
|
|
/** 获取减签人员标签 */
|
function getDeleteSignUserLabel(task: any): string {
|
const deptName = task?.assigneeUser?.deptName || task?.ownerUser?.deptName;
|
const nickname = task?.assigneeUser?.nickname || task?.ownerUser?.nickname;
|
return `${nickname} ( 所属部门:${deptName} )`;
|
}
|
|
/** 处理减签 */
|
async function handlerDeleteSign() {
|
formLoading.value = true;
|
try {
|
// 1.1 校验表单
|
if (!deleteSignFormRef.value) return;
|
await deleteSignFormRef.value?.validate();
|
// 1.2 提交减签
|
const data = {
|
id: deleteSignForm.deleteSignTaskId,
|
reason: deleteSignForm.reason,
|
};
|
await signDeleteTask(data);
|
message.success('减签成功');
|
deleteSignFormRef.value.resetFields();
|
popOverVisible.value.deleteSign = false;
|
// 2 加载最新数据
|
reload();
|
} finally {
|
formLoading.value = false;
|
}
|
}
|
|
/** 重新加载数据 */
|
function reload() {
|
emit('success');
|
}
|
|
/** 任务是否为处理中状态 */
|
function isHandleTaskStatus() {
|
let canHandle = false;
|
if (BpmTaskStatusEnum.RUNNING === runningTask.value?.status) {
|
canHandle = true;
|
}
|
return canHandle;
|
}
|
|
/** 流程状态是否为结束状态 */
|
function isEndProcessStatus(status: number) {
|
let isEndStatus = false;
|
if (
|
BpmProcessInstanceStatus.APPROVE === status ||
|
BpmProcessInstanceStatus.REJECT === status ||
|
BpmProcessInstanceStatus.CANCEL === status
|
) {
|
isEndStatus = true;
|
}
|
return isEndStatus;
|
}
|
|
/** 是否显示按钮 */
|
function isShowButton(btnType: BpmTaskOperationButtonTypeEnum): boolean {
|
let isShow = true;
|
if (
|
runningTask.value?.buttonsSetting &&
|
runningTask.value?.buttonsSetting[btnType]
|
) {
|
isShow = runningTask.value.buttonsSetting[btnType].enable;
|
}
|
return isShow;
|
}
|
|
/** 获取按钮的显示名称 */
|
function getButtonDisplayName(btnType: BpmTaskOperationButtonTypeEnum) {
|
let displayName = OPERATION_BUTTON_NAME.get(btnType);
|
if (
|
runningTask.value?.buttonsSetting &&
|
runningTask.value?.buttonsSetting[btnType]
|
) {
|
displayName = runningTask.value.buttonsSetting[btnType].displayName;
|
}
|
return displayName;
|
}
|
|
/** 加载待办任务 */
|
function loadTodoTask(task: any) {
|
approveForm.value = {};
|
runningTask.value = task;
|
approveFormFApi.value = {};
|
// 切换任务时重置请求序号与 pending 重算,避免旧任务飞行中的请求/Promise 串到新任务
|
nextApprovalRequestId += 1;
|
pendingNextNodesTask = null;
|
reasonRequire.value = task?.reasonRequire ?? false;
|
nodeTypeName.value =
|
task?.nodeType === BpmNodeTypeEnum.TRANSACTOR_NODE ? '办理' : '审批';
|
// 处理 approve 表单
|
if (task && task.formId && task.formConf) {
|
const tempApproveForm: { option?: any; rule?: any; value?: any } = {};
|
setConfAndFields2(
|
tempApproveForm,
|
task.formConf,
|
task.formFields,
|
task.formVariables,
|
);
|
// 为表单添加 onChange 事件,当表单值变化时,重新计算下一个节点的信息;网关分支可能依赖表单字段
|
tempApproveForm.option.onChange = () => {
|
// 弹窗打开时,才重新计算下一个节点的信息
|
if (!popOverVisible.value.approve) {
|
return;
|
}
|
// useDebounceFn 会把前一次返回的 Promise reject 掉,需 catch 吞掉 'cancelled'
|
pendingNextNodesTask = debouncedInitNextAssigneesFormField().catch(
|
() => {},
|
);
|
};
|
approveForm.value = tempApproveForm;
|
} else {
|
approveForm.value = {}; // 占位,避免为空
|
}
|
}
|
|
/** 校验流程表单 */
|
async function validateNormalForm() {
|
if (props.processDefinition?.formType === BpmModelFormType.NORMAL) {
|
let valid = true;
|
try {
|
await props.normalFormApi?.validate();
|
} catch {
|
valid = false;
|
}
|
return valid;
|
} else {
|
return true;
|
}
|
}
|
|
/** 从可以编辑的流程表单字段,获取需要修改的流程实例的变量 */
|
function getUpdatedProcessInstanceVariables() {
|
const variables: any = {};
|
// 从流程表单(流程定义级别)中获取变量
|
if (props.writableFields?.length && props.normalFormApi) {
|
props.writableFields.forEach((field: string) => {
|
variables[field] = props.normalFormApi.getValue(field);
|
});
|
}
|
// 从节点表单(节点级别)中获取变量;通过 form-create 官方的 formData() 拿当前值
|
const nodeFormData = approveFormFApi.value?.formData?.();
|
if (nodeFormData) {
|
Object.assign(variables, nodeFormData);
|
}
|
return variables;
|
}
|
|
/** 处理签名完成 */
|
function handleSignFinish(url: string) {
|
approveReasonForm.signPicUrl = url;
|
approveFormRef.value?.validateFields(['signPicUrl']);
|
}
|
|
/** 附件图片预览 */
|
const imagePreviewVisible = ref(false);
|
const imagePreviewUrl = ref('');
|
|
const { openPreview: openFilePreview, previewState: filePreviewState } = useFilePreview();
|
|
/** 判断文件是否为图片类型 */
|
function isImageUrl(url: string) {
|
return /\.(jpg|jpeg|png|gif|bmp|webp|svg)$/i.test(
|
url.split(/[?#]/)[0] || '',
|
);
|
}
|
|
/** 处理文件预览 */
|
function handleFilePreview(file: any) {
|
if (!file?.url && !file?.response) {
|
message.warning('文件地址不存在,无法预览');
|
return;
|
}
|
const url = file.url || file?.response?.url || file?.response;
|
if (!url) {
|
message.warning('文件地址不存在,无法预览');
|
return;
|
}
|
if (isImageUrl(url)) {
|
imagePreviewUrl.value = url;
|
imagePreviewVisible.value = true;
|
} else {
|
openFilePreview(url, file?.name);
|
}
|
}
|
|
/** 处理弹窗可见性 */
|
function handlePopoverVisible(visible: boolean) {
|
if (!visible) {
|
// 拦截关闭事件
|
popOverVisible.value.approve = true;
|
}
|
}
|
|
defineExpose({ loadTodoTask });
|
</script>
|
<template>
|
<div class="flex items-center">
|
<!-- 【通过】按钮 -->
|
<!-- z-index 设置为300 避免覆盖签名弹窗 -->
|
<Space size="middle">
|
<Popover
|
v-model:open="popOverVisible.approve"
|
placement="top"
|
:overlay-style="{ minWidth: '400px', zIndex: 300 }"
|
trigger="click"
|
@open-change="handlePopoverVisible"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.APPROVE)
|
"
|
>
|
<Button ghost type="primary" @click="openPopover('approve')">
|
<IconifyIcon icon="lucide:check" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.APPROVE) }}
|
</Button>
|
<template #content>
|
<!-- 办理表单 -->
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="approveFormRef"
|
:model="approveReasonForm"
|
:rules="approveReasonRule"
|
label-width="100px"
|
>
|
<Card v-if="runningTask?.formId > 0" class="!-mt-2.5 mb-3.5">
|
<template #title>
|
<span class="el-icon-picture-outline">
|
填写表单【{{ runningTask?.formName }}】
|
</span>
|
</template>
|
<FormCreate
|
v-model:value="approveForm.value"
|
v-model:api="approveFormFApi"
|
:option="approveForm.option"
|
:rule="approveForm.rule"
|
/>
|
</Card>
|
|
<FormItem
|
label="下一个节点的审批人"
|
name="nextAssignees"
|
v-if="nextAssigneesActivityNode.length > 0"
|
>
|
<div class="ml-2.5 mt-2.5">
|
<ProcessInstanceTimeline
|
ref="nextAssigneesTimelineRef"
|
embedded
|
:activity-nodes="nextAssigneesActivityNode"
|
:show-status-icon="false"
|
:enable-approve-user-select="true"
|
@select-user-confirm="selectNextAssigneesConfirm"
|
/>
|
</div>
|
</FormItem>
|
<FormItem
|
v-if="runningTask.signEnable"
|
label="签名"
|
name="signPicUrl"
|
ref="approveSignFormRef"
|
>
|
<div class="flex items-center gap-2">
|
<Button @click="openSignatureModal" type="primary">
|
{{ approveReasonForm.signPicUrl ? '重新签名' : '点击签名' }}
|
</Button>
|
<Image
|
class="!h-10 !w-40 object-contain"
|
v-if="approveReasonForm.signPicUrl"
|
:src="approveReasonForm.signPicUrl"
|
/>
|
</div>
|
</FormItem>
|
<FormItem :label="`${nodeTypeName}意见`" name="reason">
|
<Textarea
|
v-model:value="approveReasonForm.reason"
|
:placeholder="`请输入${nodeTypeName}意见`"
|
:rows="4"
|
/>
|
</FormItem>
|
<FormItem label="上传附件/图片" name="attachments">
|
<FileUpload
|
v-model:value="approveReasonForm.attachments"
|
:accept="APPROVAL_ATTACHMENT_FILE_TYPES"
|
:directory="APPROVAL_ATTACHMENT_DIRECTORY"
|
:max-number="10"
|
:max-size="APPROVAL_ATTACHMENT_FILE_SIZE"
|
:multiple="true"
|
:show-description="true"
|
:show-download-icon="false"
|
help-text="支持多文件/图片上传"
|
@preview="handleFilePreview"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleAudit(true, approveFormRef)"
|
>
|
{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.APPROVE,
|
)
|
}}
|
</Button>
|
<Button @click="closePopover('approve', approveFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【拒绝】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.reject"
|
placement="top"
|
:overlay-style="{ minWidth: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.REJECT)
|
"
|
>
|
<Button ghost danger type="primary" @click="openPopover('reject')">
|
<IconifyIcon icon="lucide:x" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.REJECT) }}
|
</Button>
|
<template #content>
|
<!-- 审批表单 -->
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="rejectFormRef"
|
:model="rejectReasonForm"
|
:rules="rejectReasonRule"
|
label-width="100px"
|
>
|
<FormItem label="审批意见" name="reason">
|
<Textarea
|
v-model:value="rejectReasonForm.reason"
|
placeholder="请输入审批意见"
|
:rows="4"
|
/>
|
</FormItem>
|
<FormItem label="上传附件/图片" name="attachments">
|
<FileUpload
|
v-model:value="rejectReasonForm.attachments"
|
:accept="APPROVAL_ATTACHMENT_FILE_TYPES"
|
:directory="APPROVAL_ATTACHMENT_DIRECTORY"
|
:max-number="10"
|
:max-size="APPROVAL_ATTACHMENT_FILE_SIZE"
|
:multiple="true"
|
:show-description="true"
|
help-text="支持多文件/图片上传"
|
@preview="handleFilePreview"
|
/>
|
</FormItem>
|
<FormItem>
|
<Button
|
:disabled="formLoading"
|
danger
|
type="primary"
|
@click="handleAudit(false, rejectFormRef)"
|
>
|
{{
|
getButtonDisplayName(BpmTaskOperationButtonTypeEnum.REJECT)
|
}}
|
</Button>
|
<Button
|
class="ml-2"
|
@click="closePopover('reject', rejectFormRef)"
|
>
|
取消
|
</Button>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【抄送】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.copy"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.COPY)
|
"
|
>
|
<Button type="dashed" @click="openPopover('copy')">
|
<IconifyIcon icon="lucide:copy" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.COPY) }}
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="copyFormRef"
|
:model="copyForm"
|
:rules="copyFormRule"
|
label-width="100px"
|
>
|
<FormItem label="抄送人" name="copyUserIds">
|
<Select
|
v-model:value="copyForm.copyUserIds"
|
:allow-clear="true"
|
mode="multiple"
|
placeholder="请选择抄送人"
|
class="w-full"
|
>
|
<SelectOption
|
v-for="item in userOptions"
|
:key="item.id"
|
:label="item.nickname"
|
:value="item.id"
|
>
|
{{ item.nickname }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="抄送意见" name="copyReason">
|
<Textarea
|
v-model:value="copyForm.copyReason"
|
placeholder="请输入抄送意见"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleCopy"
|
>
|
{{
|
getButtonDisplayName(BpmTaskOperationButtonTypeEnum.COPY)
|
}}
|
</Button>
|
<Button @click="closePopover('copy', copyFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【转办】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.transfer"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.TRANSFER)
|
"
|
>
|
<Button type="dashed" @click="openPopover('transfer')">
|
<IconifyIcon icon="icon-park-outline:share-two" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.TRANSFER) }}
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="transferFormRef"
|
:model="transferForm"
|
:rules="transferFormRule"
|
label-width="100px"
|
>
|
<FormItem label="新审批人" name="assigneeUserId">
|
<Select
|
v-model:value="transferForm.assigneeUserId"
|
:allow-clear="true"
|
style="width: 100%"
|
>
|
<SelectOption
|
v-for="item in userOptions"
|
:key="item.id"
|
:label="item.nickname"
|
:value="item.id"
|
>
|
{{ item.nickname }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="审批意见" name="reason">
|
<Textarea
|
v-model:value="transferForm.reason"
|
allow-clear
|
placeholder="请输入审批意见"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleTransfer()"
|
>
|
{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.TRANSFER,
|
)
|
}}
|
</Button>
|
<Button @click="closePopover('transfer', transferFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【委派】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.delegate"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.DELEGATE)
|
"
|
>
|
<Button type="dashed" @click="openPopover('delegate')">
|
<IconifyIcon :size="14" icon="icon-park-outline:user-positioning" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.DELEGATE) }}
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="delegateFormRef"
|
:model="delegateForm"
|
:rules="delegateFormRule"
|
label-width="100px"
|
>
|
<FormItem label="接收人" name="delegateUserId">
|
<Select
|
v-model:value="delegateForm.delegateUserId"
|
:allow-clear="true"
|
style="width: 100%"
|
>
|
<SelectOption
|
v-for="item in userOptions"
|
:key="item.id"
|
:label="item.nickname"
|
:value="item.id"
|
>
|
{{ item.nickname }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="审批意见" name="reason">
|
<Textarea
|
v-model:value="delegateForm.reason"
|
allow-clear
|
placeholder="请输入审批意见"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleDelegate()"
|
>
|
{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.DELEGATE,
|
)
|
}}
|
</Button>
|
<Button @click="closePopover('delegate', delegateFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【加签】按钮 当前任务审批人为A,向前加签选了一个C,则需要C先审批,然后再是A审批,向后加签B,A审批完,需要B再审批完,才算完成这个任务节点 -->
|
<Popover
|
v-model:open="popOverVisible.addSign"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.ADD_SIGN)
|
"
|
>
|
<Button type="dashed" @click="openPopover('addSign')">
|
<IconifyIcon :size="14" icon="icon-park-outline:plus" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.ADD_SIGN) }}
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="addSignFormRef"
|
:model="addSignForm"
|
:rules="addSignFormRule"
|
label-width="100px"
|
>
|
<FormItem label="加签处理人" name="addSignUserIds">
|
<Select
|
v-model:value="addSignForm.addSignUserIds"
|
:allow-clear="true"
|
mode="multiple"
|
style="width: 100%"
|
>
|
<SelectOption
|
v-for="item in userOptions"
|
:key="item.id"
|
:label="item.nickname"
|
:value="item.id"
|
>
|
{{ item.nickname }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="审批意见" name="reason">
|
<Textarea
|
v-model:value="addSignForm.reason"
|
allow-clear
|
placeholder="请输入审批意见"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handlerAddSign('before')"
|
>
|
向前{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.ADD_SIGN,
|
)
|
}}
|
</Button>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handlerAddSign('after')"
|
>
|
向后{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.ADD_SIGN,
|
)
|
}}
|
</Button>
|
<Button @click="closePopover('addSign', addSignFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【减签】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.deleteSign"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="runningTask?.children.length > 0"
|
>
|
<Button type="dashed" @click="openPopover('deleteSign')">
|
<IconifyIcon :size="14" icon="icon-park-outline:minus" /> 减签
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="deleteSignFormRef"
|
:model="deleteSignForm"
|
:rules="deleteSignFormRule"
|
label-width="100px"
|
>
|
<FormItem label="减签人员" name="deleteSignTaskId">
|
<Select
|
v-model:value="deleteSignForm.deleteSignTaskId"
|
:allow-clear="true"
|
style="width: 100%"
|
>
|
<SelectOption
|
v-for="item in runningTask.children"
|
:key="item.id"
|
:label="getDeleteSignUserLabel(item)"
|
:value="item.id"
|
>
|
{{ getDeleteSignUserLabel(item) }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="审批意见" name="reason">
|
<Textarea
|
v-model:value="deleteSignForm.reason"
|
allow-clear
|
placeholder="请输入审批意见"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handlerDeleteSign()"
|
>
|
减签
|
</Button>
|
<Button
|
@click="closePopover('deleteSign', deleteSignFormRef)"
|
>
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!-- 【退回】按钮 -->
|
<Popover
|
v-model:open="popOverVisible.return"
|
placement="top"
|
:overlay-style="{ width: '400px' }"
|
trigger="click"
|
v-if="
|
runningTask &&
|
isHandleTaskStatus() &&
|
isShowButton(BpmTaskOperationButtonTypeEnum.RETURN)
|
"
|
>
|
<Button type="dashed" @click="openPopover('return')">
|
<IconifyIcon :size="14" icon="lucide:arrow-left" />
|
{{ getButtonDisplayName(BpmTaskOperationButtonTypeEnum.RETURN) }}
|
</Button>
|
<template #content>
|
<div class="flex flex-1 flex-col px-5 pt-5" v-loading="formLoading">
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="returnFormRef"
|
:model="returnForm"
|
:rules="returnFormRule"
|
label-width="100px"
|
>
|
<FormItem label="退回节点" name="targetTaskDefinitionKey">
|
<Select
|
v-model:value="returnForm.targetTaskDefinitionKey"
|
:allow-clear="true"
|
style="width: 100%"
|
>
|
<SelectOption
|
v-for="item in returnList"
|
:key="item.taskDefinitionKey"
|
:label="item.name"
|
:value="item.taskDefinitionKey"
|
>
|
{{ item.name }}
|
</SelectOption>
|
</Select>
|
</FormItem>
|
<FormItem label="退回理由" name="returnReason">
|
<Textarea
|
v-model:value="returnForm.returnReason"
|
allow-clear
|
placeholder="请输入退回理由"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem>
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleReturn()"
|
>
|
{{
|
getButtonDisplayName(
|
BpmTaskOperationButtonTypeEnum.RETURN,
|
)
|
}}
|
</Button>
|
<Button @click="closePopover('return', returnFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
|
<!--【取消】按钮 这个对应发起人的取消, 只有发起人可以取消 -->
|
<Popover
|
v-model:open="popOverVisible.cancel"
|
placement="top"
|
:width="500"
|
trigger="click"
|
v-if="
|
userId === processInstance?.startUser?.id &&
|
!isEndProcessStatus(processInstance?.status)
|
"
|
>
|
<Button type="dashed" @click="openPopover('cancel')">
|
<IconifyIcon :size="14" icon="icon-park-outline:back" />
|
取消
|
</Button>
|
<template #content>
|
<div
|
class="flex w-96 flex-1 flex-col px-5 pt-5"
|
v-loading="formLoading"
|
>
|
<Form
|
layout="vertical"
|
class="mb-auto"
|
ref="cancelFormRef"
|
:model="cancelForm"
|
:rules="cancelFormRule"
|
label-width="100px"
|
>
|
<FormItem label="取消理由" name="cancelReason">
|
<Alert
|
class="mb-2 text-xs"
|
type="warning"
|
size="small"
|
show-icon
|
message="友情提醒:取消后,该审批流程将自动结束。"
|
/>
|
<Textarea
|
v-model:value="cancelForm.cancelReason"
|
allow-clear
|
placeholder="请输入取消理由"
|
:rows="3"
|
/>
|
</FormItem>
|
<FormItem :wrapper-col="{ span: 18, offset: 0 }">
|
<Space>
|
<Button
|
:disabled="formLoading"
|
type="primary"
|
@click="handleCancel()"
|
>
|
确认
|
</Button>
|
|
<Button @click="closePopover('cancel', cancelFormRef)">
|
取消
|
</Button>
|
</Space>
|
</FormItem>
|
</Form>
|
</div>
|
</template>
|
</Popover>
|
<!-- 【再次提交】 按钮-->
|
<Button
|
type="dashed"
|
@click="handleReCreate()"
|
v-if="
|
userId === processInstance?.startUser?.id &&
|
isEndProcessStatus(processInstance?.status) &&
|
processDefinition?.formType === 10
|
"
|
>
|
<IconifyIcon :size="14" icon="lucide:refresh-cw" /> 再次提交
|
</Button>
|
</Space>
|
</div>
|
|
<!-- 签名弹窗 -->
|
<SignatureModal @success="handleSignFinish" />
|
|
<!-- 图片预览(隐藏的 Image 组件,仅用于附件预览弹窗) -->
|
<div style="display: none">
|
<Image
|
:preview="{
|
visible: imagePreviewVisible,
|
onVisibleChange: (visible: boolean) => {
|
imagePreviewVisible = visible;
|
},
|
}"
|
:src="imagePreviewUrl"
|
/>
|
</div>
|
|
<!-- 文件预览(PDF/Word/Excel/PPT) -->
|
<FilePreviewModal
|
v-model:visible="filePreviewState.visible.value"
|
:file-url="filePreviewState.fileUrl.value"
|
:file-name="filePreviewState.fileName.value"
|
/>
|
</template>
|