<script lang="ts" setup>
|
import type { ActionItem, BasicColumn } from '@jnpf/ui/vxeTable';
|
|
import { onMounted } from 'vue';
|
|
import { useMessage } from '@jnpf/hooks';
|
import { usePopup } from '@jnpf/ui/popup';
|
import { BasicVxeTable, TableAction, useVxeTable } from '@jnpf/ui/vxeTable';
|
|
import dayjs from 'dayjs';
|
|
import { batchSign, getFlowBeforeList } from '#/api/workFlow/task';
|
import { getTreeList } from '#/api/workFlow/template';
|
import { useFlowState } from '#/hooks/flow/useFlowStatus';
|
import { $t } from '#/locales';
|
import { useBaseStore } from '#/store';
|
import FlowParser from '#/views/workFlow/components/FlowParser.vue';
|
|
defineOptions({ name: 'WorkFlowFlowToSign' });
|
|
const baseStore = useBaseStore();
|
const { createMessage, createConfirm } = useMessage();
|
const { flowUrgentList, getUrgentText, getUrgentTextColor, getHandlingStatusContent, getHandlingStatusColor } = useFlowState();
|
const [registerFlowParser, { openPopup: openFlowParser }] = usePopup();
|
const columns: BasicColumn[] = [
|
{ title: '流程标题', dataIndex: 'fullName', minWidth: 200, slots: { default: 'fullName' } },
|
{ title: '所属流程', dataIndex: 'flowName', minWidth: 150 },
|
{ title: '发起时间', dataIndex: 'startTime', width: 150, format: 'date|YYYY-MM-DD HH:mm:ss' },
|
{ title: '发起人员', dataIndex: 'creatorUser', width: 120 },
|
{ title: '审批节点', dataIndex: 'currentNodeName', width: 150 },
|
{ title: '紧急程度', dataIndex: 'flowUrgent', width: 100, align: 'center', slots: { default: 'flowUrgent' } },
|
{ title: '流程状态', dataIndex: 'status', width: 120, align: 'center', slots: { default: 'status' } },
|
{ title: '接收时间', dataIndex: 'creatorTime', width: 150, format: 'date|YYYY-MM-DD HH:mm:ss' },
|
];
|
const [registerTable, { reload, getForm, getSelectRows }] = useVxeTable({
|
api: getFlowBeforeList,
|
columns,
|
searchInfo: { category: 0 },
|
useSearchForm: true,
|
rowSelection: { type: 'checkbox' },
|
clickToRowSelect: false,
|
formConfig: {
|
autoAdvancedLine: 2,
|
schemas: [
|
{
|
field: 'keyword',
|
label: $t('common.keyword'),
|
component: 'Input',
|
componentProps: { placeholder: $t('common.enterKeyword'), submitOnPressEnter: true },
|
},
|
{
|
field: 'pickerVal',
|
label: '发起时间',
|
component: 'DateRange',
|
componentProps: {
|
format: 'YYYY-MM-DD HH:mm:ss',
|
showTime: { defaultValue: [dayjs('00:00:00', 'HH:mm:ss'), dayjs('23:59:59', 'HH:mm:ss')] },
|
placeholder: ['开始时间', '结束时间'],
|
},
|
},
|
{
|
field: 'flowCategory',
|
label: '分类',
|
component: 'Select',
|
componentProps: { showSearch: true },
|
},
|
{
|
field: 'templateId',
|
label: '所属流程',
|
component: 'TreeSelect',
|
componentProps: { lastLevel: true },
|
},
|
{
|
field: 'creatorUserId',
|
label: '发起人员',
|
component: 'UserSelect',
|
},
|
{
|
field: 'flowUrgent',
|
label: '紧急程度',
|
component: 'Select',
|
componentProps: { showSearch: true, options: flowUrgentList },
|
},
|
],
|
fieldMapToTime: [['pickerVal', ['startTime', 'endTime']]],
|
},
|
clearSelectOnPageChange: true,
|
actionColumn: {
|
width: 50,
|
title: '操作',
|
dataIndex: 'action',
|
},
|
});
|
|
function getTableActions(record): ActionItem[] {
|
return [
|
{
|
label: '签收',
|
onClick: toDetail.bind(null, record),
|
},
|
];
|
}
|
function toDetail(record) {
|
const data = {
|
id: record.taskId,
|
flowId: record.flowId,
|
opType: 1,
|
operatorId: record.id,
|
};
|
openFlowParser(true, data);
|
}
|
function getFlowEngineList() {
|
getTreeList().then((res) => {
|
getForm().updateSchema({ field: 'templateId', componentProps: { options: res.data.list || [] } });
|
});
|
}
|
async function getOptions() {
|
const res = await baseStore.getDictionaryData('businessType');
|
getForm().updateSchema({ field: 'flowCategory', componentProps: { options: res } });
|
getFlowEngineList();
|
}
|
function handleBatchSign() {
|
const list: any[] = getSelectRows() || [];
|
if (!list.length) return createMessage.error($t('common.selectDataTip'));
|
const query = {
|
ids: list.map((item) => item.id),
|
};
|
createConfirm({
|
iconType: 'warning',
|
title: $t('common.tipTitle'),
|
content: '确定签收,签收后进入待办。',
|
onOk: () => {
|
batchSign(query).then((res) => {
|
createMessage.success(res.msg);
|
reload();
|
});
|
},
|
});
|
}
|
|
onMounted(() => {
|
getOptions();
|
});
|
</script>
|
<template>
|
<div class="jnpf-content-wrapper">
|
<div class="jnpf-content-wrapper-center">
|
<div class="jnpf-content-wrapper-content">
|
<BasicVxeTable @register="registerTable">
|
<template #tableTitle>
|
<a-button type="primary" pre-icon="icon-ym icon-ym-btn-batch" @click="handleBatchSign()">批量签收</a-button>
|
</template>
|
<template #fullName="{ record }">
|
<a-tag color="success" v-if="record.delegateUser">代理</a-tag>
|
{{ record.fullName }}
|
</template>
|
<template #flowUrgent="{ record }">
|
<JnpfTextTag :content="getUrgentText(record.flowUrgent)" :color="getUrgentTextColor(record.flowUrgent)" :show-tag="false" show-text-color />
|
</template>
|
<template #status="{ record }">
|
<JnpfTextTag :content="getHandlingStatusContent(record.status)" :color="getHandlingStatusColor(record.status)" />
|
</template>
|
<template #action="{ record }">
|
<TableAction :actions="getTableActions(record)" />
|
</template>
|
</BasicVxeTable>
|
</div>
|
</div>
|
<FlowParser @register="registerFlowParser" @reload="reload" />
|
</div>
|
</template>
|