2026-06-01 21:37:08 +08:00
|
|
|
<script setup lang="tsx">
|
|
|
|
|
import { computed, markRaw, reactive, ref } from 'vue';
|
2026-06-11 10:56:24 +08:00
|
|
|
import { ElButton, ElTag } from 'element-plus';
|
2026-06-01 21:37:08 +08:00
|
|
|
import dayjs from 'dayjs';
|
2026-06-11 10:56:24 +08:00
|
|
|
import { fetchExportOvertimeApplications, fetchGetOvertimeApplicationPage } from '@/service/api';
|
2026-06-01 21:37:08 +08:00
|
|
|
import { useUIPaginatedTable } from '@/hooks/common/table';
|
|
|
|
|
import BusinessTableActionCell, { type BusinessTableAction } from '@/components/custom/business-table-action-cell';
|
2026-06-11 10:56:24 +08:00
|
|
|
import OvertimeApplicationApprovalRecordDialog from './modules/overtime-application-approval-record-dialog.vue';
|
2026-06-01 21:37:08 +08:00
|
|
|
import OvertimeApplicationDetailDialog from './modules/overtime-application-detail-dialog.vue';
|
|
|
|
|
import OvertimeApplicationOperateDialog from './modules/overtime-application-operate-dialog.vue';
|
|
|
|
|
import OvertimeApplicationSearch from './modules/overtime-application-search.vue';
|
|
|
|
|
import {
|
|
|
|
|
downloadBlob,
|
|
|
|
|
formatEmptyText,
|
|
|
|
|
formatOvertimeDate,
|
|
|
|
|
formatOvertimeDateTime,
|
|
|
|
|
getOvertimeApplicationStatusLabel,
|
|
|
|
|
resolveOvertimeApplicationStatusTagType
|
|
|
|
|
} from './modules/overtime-application-shared';
|
|
|
|
|
import IconMdiEyeOutline from '~icons/mdi/eye-outline';
|
2026-06-11 10:56:24 +08:00
|
|
|
import IconMdiFileDocumentCheckOutline from '~icons/mdi/file-document-check-outline';
|
2026-06-01 21:37:08 +08:00
|
|
|
import IconMdiPencilOutline from '~icons/mdi/pencil-outline';
|
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'OvertimeApplication' });
|
|
|
|
|
|
|
|
|
|
type OvertimeApplicationPageResponse = Awaited<ReturnType<typeof fetchGetOvertimeApplicationPage>>;
|
|
|
|
|
|
|
|
|
|
function getInitSearchParams(): Api.OvertimeApplication.OvertimeApplicationSearchParams {
|
|
|
|
|
return {
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
keyword: undefined,
|
|
|
|
|
applicantName: undefined,
|
|
|
|
|
approverId: undefined,
|
|
|
|
|
approverName: undefined,
|
|
|
|
|
statusCode: undefined,
|
|
|
|
|
overtimeDate: undefined,
|
|
|
|
|
createTime: undefined
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function transformPageResult(response: OvertimeApplicationPageResponse, pageNo: number, pageSize: number) {
|
|
|
|
|
if (!response.error && response.data) {
|
|
|
|
|
return {
|
|
|
|
|
data: response.data.list,
|
|
|
|
|
pageNum: pageNo,
|
|
|
|
|
pageSize,
|
|
|
|
|
total: response.data.total
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
data: [],
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize,
|
|
|
|
|
total: 0
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const searchParams = reactive(getInitSearchParams());
|
|
|
|
|
const operateVisible = ref(false);
|
|
|
|
|
const detailVisible = ref(false);
|
2026-06-11 10:56:24 +08:00
|
|
|
const approvalRecordVisible = ref(false);
|
2026-06-01 21:37:08 +08:00
|
|
|
const operateType = ref<'add' | 'edit'>('add');
|
|
|
|
|
const currentRow = ref<Api.OvertimeApplication.OvertimeApplication | null>(null);
|
|
|
|
|
const exporting = ref(false);
|
|
|
|
|
|
|
|
|
|
const ACTION_ICON_MAP = {
|
|
|
|
|
detail: markRaw(IconMdiEyeOutline),
|
2026-06-11 10:56:24 +08:00
|
|
|
approvalRecord: markRaw(IconMdiFileDocumentCheckOutline),
|
|
|
|
|
edit: markRaw(IconMdiPencilOutline)
|
2026-06-01 21:37:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const { columns, columnChecks, data, loading, getDataByPage, mobilePagination } = useUIPaginatedTable<
|
|
|
|
|
OvertimeApplicationPageResponse,
|
|
|
|
|
Api.OvertimeApplication.OvertimeApplication
|
|
|
|
|
>({
|
|
|
|
|
paginationProps: {
|
|
|
|
|
currentPage: searchParams.pageNo,
|
|
|
|
|
pageSize: searchParams.pageSize
|
|
|
|
|
},
|
|
|
|
|
api: () => fetchGetOvertimeApplicationPage(searchParams),
|
|
|
|
|
transform: response => transformPageResult(response, searchParams.pageNo ?? 1, searchParams.pageSize ?? 10),
|
|
|
|
|
onPaginationParamsChange: params => {
|
|
|
|
|
searchParams.pageNo = params.currentPage ?? 1;
|
|
|
|
|
searchParams.pageSize = params.pageSize ?? 10;
|
|
|
|
|
},
|
|
|
|
|
columns: () => [
|
|
|
|
|
{ prop: 'index', type: 'index', label: '序号', width: 64 },
|
|
|
|
|
{ prop: 'applicantName', label: '申请人', minWidth: 120, showOverflowTooltip: true },
|
|
|
|
|
{
|
|
|
|
|
prop: 'overtimeDate',
|
|
|
|
|
label: '加班日期',
|
|
|
|
|
width: 120,
|
|
|
|
|
formatter: row => formatOvertimeDate(row.overtimeDate)
|
|
|
|
|
},
|
|
|
|
|
{ prop: 'overtimeDuration', label: '加班时长', width: 110, showOverflowTooltip: true },
|
|
|
|
|
{
|
|
|
|
|
prop: 'overtimeReason',
|
|
|
|
|
label: '加班原因',
|
|
|
|
|
minWidth: 180,
|
2026-06-11 10:56:24 +08:00
|
|
|
className: 'overtime-application__cell-ellipsis',
|
2026-06-01 21:37:08 +08:00
|
|
|
formatter: row => formatEmptyText(row.overtimeReason)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'overtimeContent',
|
|
|
|
|
label: '加班内容',
|
|
|
|
|
minWidth: 200,
|
2026-06-11 10:56:24 +08:00
|
|
|
className: 'overtime-application__cell-ellipsis',
|
2026-06-01 21:37:08 +08:00
|
|
|
formatter: row => formatEmptyText(row.overtimeContent)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'statusCode',
|
|
|
|
|
label: '状态',
|
|
|
|
|
width: 110,
|
|
|
|
|
align: 'center',
|
|
|
|
|
formatter: row => (
|
|
|
|
|
<ElTag type={resolveOvertimeApplicationStatusTagType(row.statusCode)}>
|
|
|
|
|
{getOvertimeApplicationStatusLabel(row.statusCode, row.statusName)}
|
|
|
|
|
</ElTag>
|
|
|
|
|
)
|
|
|
|
|
},
|
2026-06-11 10:56:24 +08:00
|
|
|
{ prop: 'approverName', label: '审核人', minWidth: 80, showOverflowTooltip: true },
|
2026-06-01 21:37:08 +08:00
|
|
|
{
|
|
|
|
|
prop: 'submitTime',
|
|
|
|
|
label: '提交时间',
|
2026-06-11 10:56:24 +08:00
|
|
|
minWidth: 150,
|
2026-06-01 21:37:08 +08:00
|
|
|
formatter: row => formatOvertimeDateTime(row.submitTime)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'approvalTime',
|
|
|
|
|
label: '审核时间',
|
2026-06-11 10:56:24 +08:00
|
|
|
minWidth: 150,
|
2026-06-01 21:37:08 +08:00
|
|
|
formatter: row => formatOvertimeDateTime(row.approvalTime)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'operate',
|
|
|
|
|
label: '操作',
|
|
|
|
|
width: 170,
|
|
|
|
|
align: 'center',
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
formatter: row => <BusinessTableActionCell actions={getRowActions(row)} variant="icon" />
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const totalCount = computed(() => mobilePagination.value.total || data.value.length);
|
|
|
|
|
|
|
|
|
|
function getRowActions(row: Api.OvertimeApplication.OvertimeApplication): BusinessTableAction[] {
|
|
|
|
|
const actions: BusinessTableAction[] = [
|
|
|
|
|
{
|
|
|
|
|
key: 'detail',
|
|
|
|
|
label: '详情',
|
|
|
|
|
buttonType: 'primary',
|
|
|
|
|
icon: ACTION_ICON_MAP.detail,
|
|
|
|
|
onClick: () => openDetail(row)
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
2026-06-11 10:56:24 +08:00
|
|
|
if (row.statusCode === 'rejected' && row.allowEdit) {
|
2026-06-01 21:37:08 +08:00
|
|
|
actions.push({
|
|
|
|
|
key: 'edit',
|
|
|
|
|
label: '修改',
|
|
|
|
|
buttonType: 'primary',
|
|
|
|
|
icon: ACTION_ICON_MAP.edit,
|
|
|
|
|
onClick: () => openEdit(row)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-11 10:56:24 +08:00
|
|
|
if (['approved', 'rejected'].includes(row.statusCode)) {
|
2026-06-01 21:37:08 +08:00
|
|
|
actions.push({
|
2026-06-11 10:56:24 +08:00
|
|
|
key: 'approval-record',
|
|
|
|
|
label: '审批记录',
|
|
|
|
|
buttonType: 'info',
|
|
|
|
|
icon: ACTION_ICON_MAP.approvalRecord,
|
|
|
|
|
onClick: () => openApprovalRecord(row)
|
2026-06-01 21:37:08 +08:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return actions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openAdd() {
|
|
|
|
|
operateType.value = 'add';
|
|
|
|
|
currentRow.value = null;
|
|
|
|
|
operateVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openEdit(row: Api.OvertimeApplication.OvertimeApplication) {
|
|
|
|
|
operateType.value = 'edit';
|
|
|
|
|
currentRow.value = row;
|
|
|
|
|
operateVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openDetail(row: Api.OvertimeApplication.OvertimeApplication) {
|
|
|
|
|
currentRow.value = row;
|
|
|
|
|
detailVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-11 10:56:24 +08:00
|
|
|
function openApprovalRecord(row: Api.OvertimeApplication.OvertimeApplication) {
|
2026-06-01 21:37:08 +08:00
|
|
|
currentRow.value = row;
|
2026-06-11 10:56:24 +08:00
|
|
|
approvalRecordVisible.value = true;
|
2026-06-01 21:37:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function reloadTable(page = searchParams.pageNo ?? 1) {
|
|
|
|
|
await getDataByPage(page);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function resetSearchParams() {
|
|
|
|
|
const pageSize = searchParams.pageSize ?? 10;
|
|
|
|
|
Object.assign(searchParams, getInitSearchParams(), { pageSize });
|
|
|
|
|
reloadTable(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleSearch() {
|
|
|
|
|
reloadTable(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleSubmitted() {
|
|
|
|
|
operateVisible.value = false;
|
|
|
|
|
reloadTable(searchParams.pageNo ?? 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function handleExport() {
|
|
|
|
|
exporting.value = true;
|
|
|
|
|
const { error, data: blob } = await fetchExportOvertimeApplications(searchParams);
|
|
|
|
|
exporting.value = false;
|
|
|
|
|
|
|
|
|
|
if (error || !blob) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
downloadBlob(blob, `加班申请_${dayjs().format('YYYY-MM-DD')}.xls`);
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="flex-col-stretch gap-16px overflow-hidden">
|
|
|
|
|
<OvertimeApplicationSearch v-model:model="searchParams" @reset="resetSearchParams" @search="handleSearch" />
|
|
|
|
|
|
|
|
|
|
<ElCard class="flex-1-hidden card-wrapper" body-class="business-table-card-body">
|
|
|
|
|
<template #header>
|
|
|
|
|
<div class="flex flex-wrap items-center justify-between gap-12px">
|
|
|
|
|
<div class="flex items-center gap-10px">
|
|
|
|
|
<p class="text-16px font-600">加班申请</p>
|
|
|
|
|
<ElTag effect="plain">{{ totalCount }}</ElTag>
|
|
|
|
|
</div>
|
|
|
|
|
<TableHeaderOperation v-model:columns="columnChecks" :loading="loading" @refresh="reloadTable">
|
|
|
|
|
<template #default>
|
|
|
|
|
<ElButton plain :loading="exporting" @click="handleExport">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-mdi-download class="text-icon" />
|
|
|
|
|
</template>
|
|
|
|
|
导出
|
|
|
|
|
</ElButton>
|
|
|
|
|
<ElButton plain type="primary" @click="openAdd">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-ic-round-plus class="text-icon" />
|
|
|
|
|
</template>
|
|
|
|
|
新增
|
|
|
|
|
</ElButton>
|
|
|
|
|
</template>
|
|
|
|
|
</TableHeaderOperation>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<div class="flex-1">
|
|
|
|
|
<ElTable v-loading="loading" height="100%" border row-key="id" :data="data">
|
|
|
|
|
<template v-for="col in columns" :key="String(col.prop)">
|
|
|
|
|
<ElTableColumn v-bind="col" />
|
|
|
|
|
</template>
|
|
|
|
|
</ElTable>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mt-20px flex justify-end">
|
|
|
|
|
<ElPagination
|
|
|
|
|
v-if="mobilePagination.total"
|
|
|
|
|
layout="total,prev,pager,next,sizes"
|
|
|
|
|
v-bind="mobilePagination"
|
|
|
|
|
@current-change="mobilePagination['current-change']"
|
|
|
|
|
@size-change="mobilePagination['size-change']"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ElCard>
|
|
|
|
|
|
|
|
|
|
<OvertimeApplicationOperateDialog
|
|
|
|
|
v-model:visible="operateVisible"
|
|
|
|
|
:operate-type="operateType"
|
|
|
|
|
:row-data="currentRow"
|
|
|
|
|
@submitted="handleSubmitted"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<OvertimeApplicationDetailDialog v-model:visible="detailVisible" :row-data="currentRow" />
|
|
|
|
|
|
2026-06-11 10:56:24 +08:00
|
|
|
<OvertimeApplicationApprovalRecordDialog v-model:visible="approvalRecordVisible" :row-data="currentRow" />
|
2026-06-01 21:37:08 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
:deep(.overtime-application__reason-link) {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.overtime-application__reason-link > span) {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2026-06-11 10:56:24 +08:00
|
|
|
|
|
|
|
|
/* 加班原因/加班内容:单元格内容溢出时仅显示省略号,不弹出 tooltip */
|
|
|
|
|
:deep(.overtime-application__cell-ellipsis .cell) {
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2026-06-01 21:37:08 +08:00
|
|
|
</style>
|