2025-03-19 15:57:48 +08:00
|
|
|
|
'use client';
|
2025-03-19 21:33:26 +08:00
|
|
|
|
import { useState } from 'react';
|
|
|
|
|
import { AgGridReact } from '@ag-grid-community/react';
|
|
|
|
|
import { ColDef, ColGroupDef } from '@ag-grid-community/core';
|
|
|
|
|
import { SetFilterModule } from '@ag-grid-enterprise/set-filter';
|
2025-03-19 15:57:48 +08:00
|
|
|
|
import 'ag-grid-community/styles/ag-grid.css';
|
|
|
|
|
import 'ag-grid-community/styles/ag-theme-alpine.css';
|
|
|
|
|
import { areaOptions } from '@web/src/app/main/staffinformation/area-options';
|
|
|
|
|
import type { CascaderProps } from 'antd/es/cascader';
|
2025-03-19 21:33:26 +08:00
|
|
|
|
import { utils, writeFile } from 'xlsx';
|
|
|
|
|
import { Modal, Input, Button } from 'antd';
|
|
|
|
|
import { api } from '@nice/client';
|
2025-03-12 11:45:18 +08:00
|
|
|
|
|
2025-03-19 15:57:48 +08:00
|
|
|
|
// 修改函数类型定义
|
|
|
|
|
|
|
|
|
|
function getAreaName(codes: string[], level?: number): string {
|
|
|
|
|
const result: string[] = [];
|
|
|
|
|
let currentLevel: CascaderProps['options'] = areaOptions;
|
2025-03-19 21:33:26 +08:00
|
|
|
|
|
2025-03-19 15:57:48 +08:00
|
|
|
|
for (const code of codes) {
|
|
|
|
|
const found = currentLevel?.find(opt => opt.value === code);
|
|
|
|
|
if (!found) break;
|
|
|
|
|
|
|
|
|
|
result.push(String(found.label));
|
|
|
|
|
currentLevel = found.children || [];
|
|
|
|
|
if (level && result.length >= level) break; // 添加层级控制
|
|
|
|
|
}
|
2025-03-19 21:33:26 +08:00
|
|
|
|
|
2025-03-19 15:57:48 +08:00
|
|
|
|
|
|
|
|
|
return level ? result[level - 1] || '' : result.join(' / ') || codes.join('/');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function StaffTable() {
|
2025-03-12 11:45:18 +08:00
|
|
|
|
const { data: staffs, isLoading } = api.staff.findMany.useQuery({
|
2025-03-19 15:57:48 +08:00
|
|
|
|
where: { deletedAt: null },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
include: { // 添加关联查询
|
|
|
|
|
department: true
|
|
|
|
|
}
|
2025-03-12 11:45:18 +08:00
|
|
|
|
});
|
2025-03-19 21:33:26 +08:00
|
|
|
|
const [gridApi, setGridApi] = useState<any>(null); // 添加gridApi状态
|
|
|
|
|
const [confirmVisible, setConfirmVisible] = useState(false);
|
|
|
|
|
const [fileNameVisible, setFileNameVisible] = useState(false);
|
|
|
|
|
const [fileName, setFileName] = useState('');
|
|
|
|
|
const [defaultFileName] = useState(`员工数据_${new Date().toISOString().slice(0, 10)}`);
|
|
|
|
|
const handleExport = async () => {
|
|
|
|
|
setConfirmVisible(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleConfirm = async () => {
|
|
|
|
|
setConfirmVisible(false);
|
|
|
|
|
setFileNameVisible(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 添加导出处理函数
|
|
|
|
|
const handleFileNameConfirm = () => {
|
|
|
|
|
setFileNameVisible(false)
|
|
|
|
|
if (!gridApi) return;
|
|
|
|
|
|
|
|
|
|
const finalFileName = fileName || defaultFileName;
|
|
|
|
|
|
|
|
|
|
const flattenColumns = (cols: any[]): any[] => {
|
|
|
|
|
return cols.flatMap(col =>
|
|
|
|
|
col.children ? flattenColumns(col.children) : col
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const allColDefs = flattenColumns(gridApi.getColumnDefs());
|
|
|
|
|
|
|
|
|
|
const rowData = gridApi.getRenderedNodes().map((node: any) => {
|
|
|
|
|
const row: Record<string, any> = {};
|
|
|
|
|
allColDefs.forEach((colDef: any) => {
|
|
|
|
|
const field = colDef.field;
|
|
|
|
|
if (field) {
|
|
|
|
|
const value = node.data[field];
|
|
|
|
|
const formatter = colDef.valueFormatter;
|
|
|
|
|
const renderer = colDef.cellRenderer;
|
|
|
|
|
|
|
|
|
|
let renderedValue = value;
|
|
|
|
|
if (formatter) {
|
|
|
|
|
renderedValue = formatter({ value });
|
|
|
|
|
} else if (renderer) {
|
|
|
|
|
const renderResult = renderer({ value });
|
|
|
|
|
// 改进渲染结果处理
|
|
|
|
|
if (typeof renderResult === 'string') {
|
|
|
|
|
renderedValue = renderResult;
|
|
|
|
|
} else if (renderResult?.props?.children) { // 处理React元素文本内容
|
|
|
|
|
renderedValue = String(renderResult.props.children);
|
|
|
|
|
} else if (renderResult?.props?.dangerouslySetInnerHTML?.__html) {
|
|
|
|
|
const html = renderResult.props.dangerouslySetInnerHTML.__html;
|
|
|
|
|
renderedValue = html.replace(/<br\s*\/?>/gi, '\n');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 增强布尔值处理逻辑
|
|
|
|
|
if (typeof renderedValue === 'boolean' ||
|
|
|
|
|
(typeof renderedValue === 'string' && ['true','false'].includes(renderedValue.toLowerCase()))) {
|
|
|
|
|
const boolValue = typeof renderedValue === 'boolean' ? renderedValue : renderedValue.toLowerCase() === 'true';
|
|
|
|
|
renderedValue = boolValue ? '是' : '否';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
row[colDef.headerName] = renderedValue;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return row;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 创建工作表并导出
|
|
|
|
|
const ws = utils.json_to_sheet(rowData);
|
|
|
|
|
const wb = utils.book_new();
|
|
|
|
|
utils.book_append_sheet(wb, ws, "Sheet1");
|
|
|
|
|
// 修改导出文件名生成方式
|
|
|
|
|
writeFile(wb, `${fileName || '未命名数据'}.xlsx`);
|
|
|
|
|
};
|
2025-03-19 15:57:48 +08:00
|
|
|
|
|
|
|
|
|
const columnDefs: (ColDef | ColGroupDef)[] = [
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'username',
|
|
|
|
|
headerName: '姓名',
|
|
|
|
|
minWidth: 120,
|
2025-03-19 15:57:48 +08:00
|
|
|
|
pinned: 'left',
|
|
|
|
|
// floatingFilter: true // 确保启用浮动过滤器
|
|
|
|
|
},
|
2025-03-12 11:45:18 +08:00
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '个人基本信息',
|
|
|
|
|
children: [
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'idNumber',
|
|
|
|
|
headerName: '身份证号',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
minWidth: 180,
|
|
|
|
|
},
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'type',
|
|
|
|
|
headerName: '人员类型',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
minWidth: 120,
|
|
|
|
|
},
|
|
|
|
|
{ field: 'officerId', headerName: '警号', minWidth: 120 },
|
|
|
|
|
{ field: 'phoneNumber', headerName: '手机号', minWidth: 130 },
|
|
|
|
|
{ field: 'age', headerName: '年龄', minWidth: 80 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'sex', headerName: '性别', minWidth: 80,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '男' : '女'
|
|
|
|
|
},
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{ field: 'bloodType', headerName: '血型', minWidth: 80 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'birthplace',
|
|
|
|
|
headerName: '籍贯',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
minWidth: 200,
|
|
|
|
|
valueFormatter: (params) => params.value ? getAreaName(params.value.split('/')) : '',
|
|
|
|
|
},
|
|
|
|
|
{ field: 'source', headerName: '来源', minWidth: 120 },
|
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '政治信息',
|
|
|
|
|
children: [
|
|
|
|
|
{ field: 'politicalStatus', headerName: '政治面貌', minWidth: 150 },
|
|
|
|
|
{ field: 'partyPosition', headerName: '党内职务', minWidth: 120 }
|
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '职务信息',
|
|
|
|
|
children: [
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{ field: 'department.name', headerName: '所属部门', minWidth: 200 },
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{ field: 'rank', headerName: '衔职级别', minWidth: 120 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'rankDate', headerName: '衔职时间', minWidth: 120,
|
|
|
|
|
valueFormatter: (params: any) => params.value ? new Date(params.value).toLocaleDateString() : ''
|
|
|
|
|
},
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{ field: 'proxyPosition', headerName: '代理职务', minWidth: 120 }
|
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '入职信息',
|
|
|
|
|
children: [
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'hireDate', headerName: '入职时间', minWidth: 120,
|
|
|
|
|
valueFormatter: (params: any) => params.value ? new Date(params.value).toLocaleDateString() : ''
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'seniority', headerName: '工龄认定时间', minWidth: 140,
|
|
|
|
|
valueFormatter: (params: any) => params.value ? new Date(params.value).toLocaleDateString() : ''
|
|
|
|
|
},
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{ field: 'sourceType', headerName: '来源类型', minWidth: 120 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'isReentry', headerName: '是否二次入职', minWidth: 120,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '是' : '否'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'isExtended', headerName: '是否延期服役', minWidth: 120,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '是' : '否'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'currentPositionDate', headerName: '现岗位开始时间', minWidth: 140,
|
|
|
|
|
valueFormatter: (params: any) => params.value ? new Date(params.value).toLocaleDateString() : ''
|
|
|
|
|
}
|
2025-03-19 15:57:48 +08:00
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '教育背景',
|
|
|
|
|
children: [
|
|
|
|
|
{ field: 'education', headerName: '学历', minWidth: 100 },
|
|
|
|
|
{ field: 'educationType', headerName: '学历形式', minWidth: 120 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'isGraduated', headerName: '是否毕业', minWidth: 100,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '是' : '否'
|
|
|
|
|
},
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{ field: 'major', headerName: '专业', minWidth: 150 },
|
|
|
|
|
{ field: 'foreignLang', headerName: '外语能力', minWidth: 120 }
|
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '培训信息',
|
|
|
|
|
children: [
|
|
|
|
|
{ field: 'trainType', headerName: '培训类型', minWidth: 120 },
|
|
|
|
|
{ field: 'trainInstitute', headerName: '培训机构', minWidth: 150 },
|
|
|
|
|
{ field: 'trainMajor', headerName: '培训专业', minWidth: 150 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'hasTrain', headerName: '是否参加培训', minWidth: 120,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '是' : '否'
|
|
|
|
|
}
|
2025-03-19 15:57:48 +08:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
headerName: '鉴定信息',
|
|
|
|
|
children: [
|
|
|
|
|
{ field: 'certRank', headerName: '鉴定等级', minWidth: 120 },
|
|
|
|
|
{ field: 'certWork', headerName: '鉴定工种', minWidth: 120 },
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'hasCert', headerName: '是否参加鉴定', minWidth: 120,
|
|
|
|
|
cellRenderer: (params: any) => params.value ? '是' : '否'
|
|
|
|
|
}
|
2025-03-19 15:57:48 +08:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
headerName: '工作信息',
|
|
|
|
|
children: [
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'equipment',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '操作维护装备',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
cellRenderer: (params: any) => (
|
2025-03-19 21:33:26 +08:00
|
|
|
|
<div
|
2025-03-19 15:57:48 +08:00
|
|
|
|
style={{ lineHeight: '24px' }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: params.value?.replace(/,/g, '<br/>') || '' }}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
autoHeight: true
|
|
|
|
|
},
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'projects',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '演训任务经历',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
cellRenderer: (params: any) => (
|
2025-03-19 21:33:26 +08:00
|
|
|
|
<div
|
2025-03-19 15:57:48 +08:00
|
|
|
|
style={{ lineHeight: '24px' }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: params.value?.replace(/,/g, '<br/>') || '' }}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
autoHeight: true
|
|
|
|
|
},
|
|
|
|
|
// 修改剩余两个字段的cellRenderer为相同结构
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'awards',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '奖励信息',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
cellRenderer: (params: any) => (
|
2025-03-19 21:33:26 +08:00
|
|
|
|
<div
|
2025-03-19 15:57:48 +08:00
|
|
|
|
style={{ lineHeight: '24px' }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: params.value?.replace(/,/g, '<br/>') || '' }}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
autoHeight: true
|
|
|
|
|
},
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{
|
|
|
|
|
field: 'punishments',
|
2025-03-19 15:57:48 +08:00
|
|
|
|
headerName: '处分信息',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
cellRenderer: (params: any) => (
|
2025-03-19 21:33:26 +08:00
|
|
|
|
<div
|
2025-03-19 15:57:48 +08:00
|
|
|
|
style={{ lineHeight: '24px' }}
|
|
|
|
|
dangerouslySetInnerHTML={{ __html: params.value?.replace(/,/g, '<br/>') || '' }}
|
|
|
|
|
/>
|
|
|
|
|
),
|
|
|
|
|
autoHeight: true
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-03-12 11:45:18 +08:00
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
2025-03-19 21:33:26 +08:00
|
|
|
|
|
2025-03-19 15:57:48 +08:00
|
|
|
|
const defaultColDef: ColDef = {
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: 'agSetColumnFilter',
|
|
|
|
|
resizable: false,
|
|
|
|
|
flex: 1,
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
maxWidth: 600,
|
|
|
|
|
suppressMovable: true,
|
2025-03-19 21:33:26 +08:00
|
|
|
|
cellStyle: {
|
2025-03-19 15:57:48 +08:00
|
|
|
|
whiteSpace: 'normal',
|
|
|
|
|
overflowWrap: 'break-word'
|
|
|
|
|
},
|
|
|
|
|
wrapText: true,
|
|
|
|
|
autoHeight: true
|
|
|
|
|
};
|
2025-03-12 11:45:18 +08:00
|
|
|
|
|
2025-03-19 15:57:48 +08:00
|
|
|
|
return (
|
|
|
|
|
<div className="ag-theme-alpine w-full h-[calc(100vh-100px)]"
|
|
|
|
|
style={{
|
|
|
|
|
width: '100%',
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
boxShadow: '0 4px 12px rgba(0, 0, 0, 0.1)'
|
|
|
|
|
}}
|
|
|
|
|
>
|
2025-03-19 21:33:26 +08:00
|
|
|
|
{!isLoading && (
|
|
|
|
|
<Button
|
|
|
|
|
onClick={handleExport}
|
|
|
|
|
className="mb-2 bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600"
|
|
|
|
|
>
|
|
|
|
|
导出Excel
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
title="确认导出"
|
|
|
|
|
open={confirmVisible}
|
|
|
|
|
onOk={handleConfirm}
|
|
|
|
|
onCancel={() => setConfirmVisible(false)}
|
|
|
|
|
okText="确认"
|
|
|
|
|
cancelText="取消"
|
|
|
|
|
>
|
|
|
|
|
<p>确定要导出当前筛选数据吗?</p>
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
title="输入文件名"
|
|
|
|
|
open={fileNameVisible}
|
|
|
|
|
onOk={handleFileNameConfirm}
|
|
|
|
|
onCancel={() => setFileNameVisible(false)}
|
|
|
|
|
okText="导出"
|
|
|
|
|
cancelText="取消"
|
|
|
|
|
>
|
|
|
|
|
<Input
|
|
|
|
|
placeholder={`默认名称: ${defaultFileName}`}
|
|
|
|
|
value={fileName}
|
|
|
|
|
onChange={(e) => setFileName(e.target.value)}
|
|
|
|
|
/>
|
|
|
|
|
</Modal>
|
2025-03-19 15:57:48 +08:00
|
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="h-full flex items-center justify-center">
|
|
|
|
|
<div className="text-gray-600 text-xl">加载中...</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<AgGridReact
|
|
|
|
|
modules={[SetFilterModule]}
|
2025-03-19 21:33:26 +08:00
|
|
|
|
onGridReady={(params) => setGridApi(params.api)} // 添加gridApi回调
|
2025-03-19 15:57:48 +08:00
|
|
|
|
rowData={staffs}
|
|
|
|
|
columnDefs={columnDefs}
|
|
|
|
|
defaultColDef={{
|
|
|
|
|
...defaultColDef,
|
|
|
|
|
filterParams: {
|
|
|
|
|
textCustomComparator: (_, value) => value !== '',
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
enableCellTextSelection={true}
|
|
|
|
|
pagination={true}
|
|
|
|
|
paginationAutoPageSize={true}
|
|
|
|
|
cacheQuickFilter={true}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|