2025-12-26 11:03:47 +08:00
|
|
|
|
import React, { useState, useEffect, useCallback, useMemo, useRef } from 'react';
|
2026-02-10 11:04:01 +08:00
|
|
|
|
import {
|
|
|
|
|
|
Table,
|
|
|
|
|
|
Button,
|
|
|
|
|
|
Modal,
|
|
|
|
|
|
Form,
|
|
|
|
|
|
Input,
|
|
|
|
|
|
Select,
|
|
|
|
|
|
DatePicker,
|
|
|
|
|
|
message,
|
|
|
|
|
|
Card,
|
|
|
|
|
|
Space,
|
|
|
|
|
|
InputNumber,
|
|
|
|
|
|
Switch,
|
|
|
|
|
|
Upload,
|
|
|
|
|
|
Progress,
|
|
|
|
|
|
Checkbox,
|
|
|
|
|
|
Spin,
|
|
|
|
|
|
Dropdown,
|
|
|
|
|
|
Tooltip,
|
|
|
|
|
|
} from 'antd';
|
|
|
|
|
|
import {
|
|
|
|
|
|
PlusOutlined,
|
|
|
|
|
|
EditOutlined,
|
|
|
|
|
|
DeleteOutlined,
|
|
|
|
|
|
SearchOutlined,
|
|
|
|
|
|
UploadOutlined,
|
|
|
|
|
|
DownloadOutlined,
|
|
|
|
|
|
SettingOutlined,
|
|
|
|
|
|
UndoOutlined,
|
|
|
|
|
|
CloudServerOutlined,
|
|
|
|
|
|
SafetyOutlined,
|
|
|
|
|
|
DatabaseOutlined,
|
|
|
|
|
|
AppstoreOutlined,
|
|
|
|
|
|
MoreOutlined,
|
|
|
|
|
|
ReloadOutlined,
|
|
|
|
|
|
ExportOutlined,
|
|
|
|
|
|
FileExcelOutlined,
|
|
|
|
|
|
SwapOutlined,
|
|
|
|
|
|
} from '@ant-design/icons';
|
2025-12-18 10:45:13 +08:00
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
import dayjs from 'dayjs';
|
2026-02-12 13:27:32 +08:00
|
|
|
|
import { useNavigate } from 'react-router-dom';
|
2026-02-10 09:32:16 +08:00
|
|
|
|
import { designTokens } from '../config/theme';
|
|
|
|
|
|
import {
|
|
|
|
|
|
PAGINATION_CONFIG,
|
|
|
|
|
|
DEBOUNCE_DELAY,
|
|
|
|
|
|
TABLE_SCROLL_CONFIG,
|
|
|
|
|
|
DEFAULT_DEVICE_FIELDS,
|
|
|
|
|
|
BASE_FIELD_NAMES,
|
|
|
|
|
|
SYSTEM_FIELDS,
|
|
|
|
|
|
FIXED_FIELDS,
|
|
|
|
|
|
IMPORT_CONFIG,
|
|
|
|
|
|
EXPORT_CONFIG,
|
|
|
|
|
|
MODAL_CONFIG,
|
|
|
|
|
|
DEVICE_TYPE_OPTIONS,
|
|
|
|
|
|
DEVICE_STATUS_OPTIONS,
|
|
|
|
|
|
COLUMN_WIDTH_CONFIG,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
EMPTY_STATE_CONFIG,
|
2026-02-10 14:48:42 +08:00
|
|
|
|
STATUS_MAP,
|
|
|
|
|
|
TYPE_MAP,
|
2026-02-10 09:32:16 +08:00
|
|
|
|
} from '../constants/deviceManagementConstants';
|
|
|
|
|
|
import {
|
|
|
|
|
|
pageContainerStyle,
|
|
|
|
|
|
headerStyle,
|
|
|
|
|
|
titleRowStyle,
|
|
|
|
|
|
titleSectionStyle,
|
|
|
|
|
|
titleIconStyle,
|
|
|
|
|
|
titleTextStyle,
|
|
|
|
|
|
pageTitleStyle,
|
|
|
|
|
|
pageSubtitleStyle,
|
|
|
|
|
|
primaryActionStyle,
|
|
|
|
|
|
secondaryActionStyle,
|
|
|
|
|
|
statsRowStyle,
|
|
|
|
|
|
statCardStyle,
|
|
|
|
|
|
statValueStyle,
|
|
|
|
|
|
statLabelStyle,
|
|
|
|
|
|
statCardRunningStyle,
|
|
|
|
|
|
statCardMaintenanceStyle,
|
|
|
|
|
|
statCardFaultStyle,
|
|
|
|
|
|
cardStyle,
|
|
|
|
|
|
filterCardStyle,
|
|
|
|
|
|
modalHeaderStyle,
|
|
|
|
|
|
tableStyles,
|
|
|
|
|
|
searchInputStyle,
|
|
|
|
|
|
selectStyle,
|
|
|
|
|
|
refreshButtonStyle,
|
|
|
|
|
|
searchButtonStyle,
|
|
|
|
|
|
resetButtonStyle,
|
|
|
|
|
|
importModalStyles,
|
|
|
|
|
|
detailModalStyles,
|
|
|
|
|
|
exportModalStyles,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
generateGlobalStyles,
|
2026-02-10 14:48:42 +08:00
|
|
|
|
emptyStateStyle,
|
|
|
|
|
|
emptyStateIconStyle,
|
|
|
|
|
|
tableContainerStyle,
|
|
|
|
|
|
resizableTitleStyles,
|
2026-02-10 09:32:16 +08:00
|
|
|
|
} from '../styles/deviceManagementStyles';
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
|
|
|
|
|
const { Option } = Select;
|
|
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
// 防抖 Hook
|
2026-02-10 09:32:16 +08:00
|
|
|
|
function useDebounce(value, delay = DEBOUNCE_DELAY) {
|
2025-12-29 13:33:26 +08:00
|
|
|
|
const [debouncedValue, setDebouncedValue] = useState(value);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
const handler = setTimeout(() => {
|
|
|
|
|
|
setDebouncedValue(value);
|
|
|
|
|
|
}, delay);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
return () => {
|
|
|
|
|
|
clearTimeout(handler);
|
|
|
|
|
|
};
|
|
|
|
|
|
}, [value, delay]);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
return debouncedValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-26 11:03:47 +08:00
|
|
|
|
// 工具函数提取到组件外部,避免每次渲染重复创建
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const getStatusConfig = status => {
|
2025-12-26 11:03:47 +08:00
|
|
|
|
const statusMap = {
|
|
|
|
|
|
running: { text: '运行中', color: 'green' },
|
|
|
|
|
|
maintenance: { text: '维护中', color: 'orange' },
|
|
|
|
|
|
offline: { text: '离线', color: 'gray' },
|
2026-02-10 11:04:01 +08:00
|
|
|
|
fault: { text: '故障', color: 'red' },
|
2025-12-26 11:03:47 +08:00
|
|
|
|
};
|
|
|
|
|
|
return statusMap[status] || { text: status, color: 'black' };
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const getTypeLabel = type => {
|
2025-12-26 11:03:47 +08:00
|
|
|
|
const typeMap = {
|
|
|
|
|
|
server: '服务器',
|
|
|
|
|
|
switch: '交换机',
|
|
|
|
|
|
router: '路由器',
|
|
|
|
|
|
storage: '存储设备',
|
2026-02-10 11:04:01 +08:00
|
|
|
|
other: '其他设备',
|
2025-12-26 11:03:47 +08:00
|
|
|
|
};
|
|
|
|
|
|
return typeMap[type] || type;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const getDeviceTypeIcon = type => {
|
2025-12-26 11:03:47 +08:00
|
|
|
|
const iconMap = {
|
|
|
|
|
|
server: <CloudServerOutlined style={{ color: '#1890ff' }} />,
|
|
|
|
|
|
switch: <SwapOutlined style={{ color: '#52c41a' }} />,
|
|
|
|
|
|
router: <SafetyOutlined style={{ color: '#faad14' }} />,
|
|
|
|
|
|
storage: <DatabaseOutlined style={{ color: '#722ed1' }} />,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
other: <AppstoreOutlined style={{ color: '#8c8c8c' }} />,
|
2025-12-26 11:03:47 +08:00
|
|
|
|
};
|
|
|
|
|
|
return iconMap[type] || <AppstoreOutlined style={{ color: '#8c8c8c' }} />;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 格式化日期
|
|
|
|
|
|
const formatDate = (date, fieldName) => {
|
|
|
|
|
|
if (!date) return '';
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-26 11:03:47 +08:00
|
|
|
|
const dateObj = new Date(date);
|
|
|
|
|
|
const formattedDate = dateObj.toLocaleDateString('zh-CN');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-26 11:03:47 +08:00
|
|
|
|
if (fieldName === 'warrantyExpiry') {
|
|
|
|
|
|
const today = new Date();
|
|
|
|
|
|
today.setHours(0, 0, 0, 0);
|
|
|
|
|
|
dateObj.setHours(0, 0, 0, 0);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-26 11:03:47 +08:00
|
|
|
|
if (dateObj < today) {
|
|
|
|
|
|
return <span style={{ color: '#d93025', fontWeight: 'bold' }}>{formattedDate}</span>;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-26 11:03:47 +08:00
|
|
|
|
return formattedDate;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-10 09:32:16 +08:00
|
|
|
|
// 使用从常量文件导入的默认设备字段配置
|
|
|
|
|
|
const defaultDeviceFields = DEFAULT_DEVICE_FIELDS;
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
|
|
|
|
|
// 简单的可调整列宽的表头组件
|
|
|
|
|
|
const ResizableTitle = props => {
|
|
|
|
|
|
const { children, onResize, width, ...restProps } = props;
|
|
|
|
|
|
|
|
|
|
|
|
const handleMouseDown = e => {
|
|
|
|
|
|
if (!onResize) return;
|
|
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
|
|
|
|
const th = e.currentTarget.closest('th');
|
|
|
|
|
|
if (!th) return;
|
|
|
|
|
|
|
|
|
|
|
|
const startWidth = th.offsetWidth;
|
|
|
|
|
|
const startX = e.clientX;
|
|
|
|
|
|
|
|
|
|
|
|
const handleMouseMove = moveEvent => {
|
|
|
|
|
|
const diff = moveEvent.clientX - startX;
|
|
|
|
|
|
const newWidth = Math.max(50, startWidth + diff);
|
|
|
|
|
|
onResize(newWidth);
|
2025-12-19 15:05:31 +08:00
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
|
|
|
|
|
const handleMouseUp = () => {
|
|
|
|
|
|
document.removeEventListener('mousemove', handleMouseMove);
|
|
|
|
|
|
document.removeEventListener('mouseup', handleMouseUp);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('mousemove', handleMouseMove);
|
|
|
|
|
|
document.addEventListener('mouseup', handleMouseUp);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<th {...restProps} style={{ position: 'relative' }}>
|
2026-02-10 14:48:42 +08:00
|
|
|
|
<div style={resizableTitleStyles.container}>
|
|
|
|
|
|
<span style={resizableTitleStyles.text}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{children}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
{onResize && (
|
|
|
|
|
|
<div
|
|
|
|
|
|
onMouseDown={handleMouseDown}
|
2026-02-10 14:48:42 +08:00
|
|
|
|
style={resizableTitleStyles.resizeHandle}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</th>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
2025-12-19 15:05:31 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
function DeviceManagement() {
|
2026-02-12 13:27:32 +08:00
|
|
|
|
const navigate = useNavigate();
|
2025-12-18 10:45:13 +08:00
|
|
|
|
const [devices, setDevices] = useState([]);
|
2025-12-29 13:02:06 +08:00
|
|
|
|
const [allDevices, setAllDevices] = useState([]);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
const [racks, setRacks] = useState([]);
|
|
|
|
|
|
const [loading, setLoading] = useState(true);
|
2025-12-29 13:33:26 +08:00
|
|
|
|
const [searching, setSearching] = useState(false);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
const [modalVisible, setModalVisible] = useState(false);
|
|
|
|
|
|
const [editingDevice, setEditingDevice] = useState(null);
|
|
|
|
|
|
const [form] = Form.useForm();
|
2025-12-18 13:04:32 +08:00
|
|
|
|
// 搜索和筛选状态
|
|
|
|
|
|
const [keyword, setKeyword] = useState('');
|
|
|
|
|
|
const [status, setStatus] = useState('all');
|
|
|
|
|
|
const [type, setType] = useState('all');
|
|
|
|
|
|
const [searchForm] = Form.useForm();
|
2026-02-10 09:32:16 +08:00
|
|
|
|
// 分页状态 - 使用常量配置
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const [pagination, setPagination] = useState({
|
|
|
|
|
|
current: 1,
|
|
|
|
|
|
pageSize: PAGINATION_CONFIG.defaultPageSize,
|
2025-12-18 19:11:56 +08:00
|
|
|
|
total: 0,
|
2026-02-10 09:32:16 +08:00
|
|
|
|
pageSizeOptions: PAGINATION_CONFIG.pageSizeOptions,
|
|
|
|
|
|
showSizeChanger: PAGINATION_CONFIG.showSizeChanger,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
showTotal: PAGINATION_CONFIG.showTotal,
|
2025-12-18 19:11:56 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 设备字段配置
|
|
|
|
|
|
const [deviceFields, setDeviceFields] = useState([]);
|
|
|
|
|
|
const [loadingFields, setLoadingFields] = useState(true);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
// 导入状态
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const [importModalVisible, setImportModalVisible] = useState(false);
|
|
|
|
|
|
const [importProgress, setImportProgress] = useState(0);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
const [importPhase, setImportPhase] = useState('');
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const [isImporting, setIsImporting] = useState(false);
|
|
|
|
|
|
const [importResult, setImportResult] = useState(null);
|
|
|
|
|
|
const [selectedDevices, setSelectedDevices] = useState([]);
|
2025-12-19 15:05:31 +08:00
|
|
|
|
const [detailModalVisible, setDetailModalVisible] = useState(false);
|
|
|
|
|
|
const [selectedDevice, setSelectedDevice] = useState(null);
|
|
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 自定义字段状态
|
|
|
|
|
|
const [customFieldName, setCustomFieldName] = useState('');
|
|
|
|
|
|
const [customFieldValue, setCustomFieldValue] = useState('');
|
|
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 字段配置模态框
|
|
|
|
|
|
const [fieldConfigModalVisible, setFieldConfigModalVisible] = useState(false);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 批量状态变更模态框
|
|
|
|
|
|
const [batchStatusModalVisible, setBatchStatusModalVisible] = useState(false);
|
|
|
|
|
|
const [batchStatusLoading, setBatchStatusLoading] = useState(false);
|
|
|
|
|
|
const [batchStatusForm] = Form.useForm();
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 导出选项模态框
|
|
|
|
|
|
const [exportModalVisible, setExportModalVisible] = useState(false);
|
|
|
|
|
|
const [exportFormat, setExportFormat] = useState('csv');
|
|
|
|
|
|
const [exportScope, setExportScope] = useState('selected');
|
|
|
|
|
|
const [exportFields, setExportFields] = useState([]);
|
|
|
|
|
|
const [exportLoading, setExportLoading] = useState(false);
|
|
|
|
|
|
const [currentPageDevices, setCurrentPageDevices] = useState([]);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 全选状态
|
|
|
|
|
|
const [selectAll, setSelectAll] = useState(false);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 列宽状态
|
|
|
|
|
|
const [columnWidths, setColumnWidths] = useState({});
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2026-02-10 09:32:16 +08:00
|
|
|
|
// 防抖搜索关键词 - 使用常量配置的延迟时间
|
|
|
|
|
|
const debouncedKeyword = useDebounce(keyword, DEBOUNCE_DELAY);
|
2025-12-29 13:33:26 +08:00
|
|
|
|
|
2026-01-20 14:31:20 +08:00
|
|
|
|
// 使用 useMemo 缓存筛选后的设备数据(现在直接使用 allDevices,因为后端已经处理了筛选)
|
|
|
|
|
|
const filteredDevicesMemo = useMemo(() => {
|
|
|
|
|
|
return allDevices;
|
|
|
|
|
|
}, [allDevices]);
|
2025-12-29 13:33:26 +08:00
|
|
|
|
|
2026-01-20 14:31:20 +08:00
|
|
|
|
// 获取所有设备(支持搜索、筛选和分页)
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const fetchDevices = useCallback(
|
|
|
|
|
|
async (page = 1, pageSize = 10, forceRefresh = false) => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
|
|
|
|
|
|
// 使用后端分页加载
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
page,
|
|
|
|
|
|
pageSize,
|
|
|
|
|
|
keyword: debouncedKeyword || undefined,
|
|
|
|
|
|
status: status !== 'all' ? status : undefined,
|
|
|
|
|
|
type: type !== 'all' ? type : undefined,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const response = await axios.get('/api/devices', { params });
|
|
|
|
|
|
const { devices, total } = response.data;
|
|
|
|
|
|
|
|
|
|
|
|
// 处理设备数据,展开自定义字段
|
|
|
|
|
|
const processedDevices = devices.map(device => {
|
|
|
|
|
|
const deviceWithFields = { ...device };
|
|
|
|
|
|
if (device.customFields && typeof device.customFields === 'object') {
|
|
|
|
|
|
Object.entries(device.customFields).forEach(([fieldName, value]) => {
|
|
|
|
|
|
deviceWithFields[fieldName] = value;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
return deviceWithFields;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
setAllDevices(processedDevices);
|
|
|
|
|
|
setPagination(prev => ({ ...prev, current: page, pageSize, total }));
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('获取设备列表失败');
|
|
|
|
|
|
console.error('获取设备列表失败:', error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
[debouncedKeyword, status, type]
|
|
|
|
|
|
);
|
2025-12-29 13:02:06 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 获取设备字段配置
|
|
|
|
|
|
const fetchDeviceFields = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setLoadingFields(true);
|
|
|
|
|
|
const response = await axios.get('/api/deviceFields');
|
|
|
|
|
|
// 按顺序排序字段
|
|
|
|
|
|
const sortedFields = response.data.sort((a, b) => a.order - b.order);
|
|
|
|
|
|
setDeviceFields(sortedFields);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('获取字段配置失败');
|
|
|
|
|
|
console.error('获取字段配置失败:', error);
|
|
|
|
|
|
// 如果获取失败,使用默认字段配置
|
|
|
|
|
|
setDeviceFields(defaultDeviceFields);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setLoadingFields(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 默认设备字段配置
|
|
|
|
|
|
const defaultDeviceFields = [
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'deviceId',
|
|
|
|
|
|
displayName: '设备ID',
|
|
|
|
|
|
fieldType: 'string',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 1,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'name',
|
|
|
|
|
|
displayName: '设备名称',
|
|
|
|
|
|
fieldType: 'string',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 2,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'type',
|
|
|
|
|
|
displayName: '设备类型',
|
|
|
|
|
|
fieldType: 'select',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 3,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
options: [
|
|
|
|
|
|
{ value: 'server', label: '服务器' },
|
|
|
|
|
|
{ value: 'switch', label: '交换机' },
|
|
|
|
|
|
{ value: 'router', label: '路由器' },
|
|
|
|
|
|
{ value: 'storage', label: '存储设备' },
|
|
|
|
|
|
{ value: 'other', label: '其他设备' },
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'model',
|
|
|
|
|
|
displayName: '型号',
|
|
|
|
|
|
fieldType: 'string',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 4,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'serialNumber',
|
|
|
|
|
|
displayName: '序列号',
|
|
|
|
|
|
fieldType: 'string',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 5,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'rackId',
|
|
|
|
|
|
displayName: '所在机柜',
|
|
|
|
|
|
fieldType: 'select',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 6,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'position',
|
|
|
|
|
|
displayName: '位置(U)',
|
|
|
|
|
|
fieldType: 'number',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 7,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'height',
|
|
|
|
|
|
displayName: '高度(U)',
|
|
|
|
|
|
fieldType: 'number',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 8,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'powerConsumption',
|
|
|
|
|
|
displayName: '功率(W)',
|
|
|
|
|
|
fieldType: 'number',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 9,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'status',
|
|
|
|
|
|
displayName: '状态',
|
|
|
|
|
|
fieldType: 'select',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 10,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
options: [
|
|
|
|
|
|
{ value: 'running', label: '运行中' },
|
|
|
|
|
|
{ value: 'maintenance', label: '维护中' },
|
|
|
|
|
|
{ value: 'offline', label: '离线' },
|
|
|
|
|
|
{ value: 'fault', label: '故障' },
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'purchaseDate',
|
|
|
|
|
|
displayName: '购买日期',
|
|
|
|
|
|
fieldType: 'date',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 11,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'warrantyExpiry',
|
|
|
|
|
|
displayName: '保修到期',
|
|
|
|
|
|
fieldType: 'date',
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
order: 12,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'ipAddress',
|
|
|
|
|
|
displayName: 'IP地址',
|
|
|
|
|
|
fieldType: 'string',
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
order: 13,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
fieldName: 'description',
|
|
|
|
|
|
displayName: '描述',
|
|
|
|
|
|
fieldType: 'textarea',
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
order: 14,
|
|
|
|
|
|
visible: true,
|
|
|
|
|
|
},
|
2025-12-18 10:45:13 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
// 获取所有机柜
|
|
|
|
|
|
const fetchRacks = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await axios.get('/api/racks');
|
2025-12-22 08:59:44 +08:00
|
|
|
|
// 现在API返回的格式是 { racks: [], total: number }
|
|
|
|
|
|
setRacks(response.data.racks || []);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('获取机柜列表失败');
|
|
|
|
|
|
console.error('获取机柜列表失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2026-01-20 14:31:20 +08:00
|
|
|
|
fetchDevices(1, pagination.pageSize);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
fetchRacks();
|
|
|
|
|
|
fetchDeviceFields();
|
2026-01-20 14:31:20 +08:00
|
|
|
|
}, [fetchDevices]);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 同步当前页设备数据
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (filteredDevicesMemo.length > 0) {
|
|
|
|
|
|
const start = (pagination.current - 1) * pagination.pageSize;
|
|
|
|
|
|
const end = start + pagination.pageSize;
|
|
|
|
|
|
const currentPageData = filteredDevicesMemo.slice(start, end);
|
|
|
|
|
|
setCurrentPageDevices(currentPageData);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setCurrentPageDevices([]);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [filteredDevicesMemo, pagination.current, pagination.pageSize]);
|
|
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 打开模态框
|
|
|
|
|
|
const showModal = (device = null) => {
|
|
|
|
|
|
setEditingDevice(device);
|
|
|
|
|
|
if (device) {
|
|
|
|
|
|
// 转换日期字段为dayjs格式
|
|
|
|
|
|
const deviceData = { ...device };
|
|
|
|
|
|
if (deviceData.purchaseDate) deviceData.purchaseDate = dayjs(deviceData.purchaseDate);
|
|
|
|
|
|
if (deviceData.warrantyExpiry) deviceData.warrantyExpiry = dayjs(deviceData.warrantyExpiry);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 定义设备模型的固定字段
|
|
|
|
|
|
const fixedFields = [
|
2026-02-10 11:04:01 +08:00
|
|
|
|
'deviceId',
|
|
|
|
|
|
'name',
|
|
|
|
|
|
'type',
|
|
|
|
|
|
'model',
|
|
|
|
|
|
'serialNumber',
|
|
|
|
|
|
'rackId',
|
|
|
|
|
|
'position',
|
|
|
|
|
|
'height',
|
|
|
|
|
|
'powerConsumption',
|
|
|
|
|
|
'status',
|
|
|
|
|
|
'purchaseDate',
|
|
|
|
|
|
'warrantyExpiry',
|
|
|
|
|
|
'ipAddress',
|
|
|
|
|
|
'description',
|
2025-12-19 13:21:39 +08:00
|
|
|
|
];
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 定义需要排除的系统字段
|
|
|
|
|
|
const systemFields = ['createdAt', 'updatedAt', 'Rack', 'Room', 'customFields'];
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 创建一个干净的设备数据对象
|
|
|
|
|
|
const cleanDeviceData = {};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 复制固定字段
|
|
|
|
|
|
fixedFields.forEach(field => {
|
|
|
|
|
|
if (deviceData[field] !== undefined) {
|
|
|
|
|
|
cleanDeviceData[field] = deviceData[field];
|
|
|
|
|
|
}
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 将自定义字段直接添加到表单数据中(不在customFields对象内)
|
|
|
|
|
|
Object.entries(deviceData).forEach(([key, value]) => {
|
|
|
|
|
|
// 排除固定字段、系统字段和非基本类型的值
|
2026-02-10 11:04:01 +08:00
|
|
|
|
if (
|
|
|
|
|
|
!fixedFields.includes(key) &&
|
|
|
|
|
|
!systemFields.includes(key) &&
|
|
|
|
|
|
key !== 'deviceId' &&
|
|
|
|
|
|
typeof value !== 'object' &&
|
|
|
|
|
|
value !== null
|
|
|
|
|
|
) {
|
2025-12-19 13:21:39 +08:00
|
|
|
|
cleanDeviceData[key] = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 如果有原始customFields对象,将其字段也添加到表单数据中
|
|
|
|
|
|
if (deviceData.customFields && typeof deviceData.customFields === 'object') {
|
|
|
|
|
|
Object.entries(deviceData.customFields).forEach(([key, value]) => {
|
|
|
|
|
|
cleanDeviceData[key] = value;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
form.setFieldsValue(cleanDeviceData);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
form.resetFields();
|
|
|
|
|
|
}
|
|
|
|
|
|
setModalVisible(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 关闭模态框
|
|
|
|
|
|
const handleCancel = () => {
|
|
|
|
|
|
setModalVisible(false);
|
|
|
|
|
|
setEditingDevice(null);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 提交表单
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleSubmit = async values => {
|
2025-12-18 10:45:13 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 定义设备模型的固定字段
|
|
|
|
|
|
const fixedFields = [
|
2026-02-10 11:04:01 +08:00
|
|
|
|
'deviceId',
|
|
|
|
|
|
'name',
|
|
|
|
|
|
'type',
|
|
|
|
|
|
'model',
|
|
|
|
|
|
'serialNumber',
|
|
|
|
|
|
'rackId',
|
|
|
|
|
|
'position',
|
|
|
|
|
|
'height',
|
|
|
|
|
|
'powerConsumption',
|
|
|
|
|
|
'status',
|
|
|
|
|
|
'purchaseDate',
|
|
|
|
|
|
'warrantyExpiry',
|
|
|
|
|
|
'ipAddress',
|
|
|
|
|
|
'description',
|
2025-12-18 10:45:13 +08:00
|
|
|
|
];
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 构建最终的设备数据,包含固定字段和自定义字段
|
|
|
|
|
|
const deviceData = {
|
|
|
|
|
|
...values,
|
|
|
|
|
|
purchaseDate: values.purchaseDate ? values.purchaseDate.format('YYYY-MM-DD') : null,
|
|
|
|
|
|
warrantyExpiry: values.warrantyExpiry ? values.warrantyExpiry.format('YYYY-MM-DD') : null,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
customFields: {}, // 用于存储自定义字段
|
2025-12-19 13:21:39 +08:00
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 分离固定字段和自定义字段
|
|
|
|
|
|
Object.keys(deviceData).forEach(key => {
|
|
|
|
|
|
if (!fixedFields.includes(key) && key !== 'customFields') {
|
|
|
|
|
|
// 将非固定字段移动到customFields对象中
|
|
|
|
|
|
deviceData.customFields[key] = deviceData[key];
|
|
|
|
|
|
delete deviceData[key];
|
2025-12-18 10:45:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (editingDevice) {
|
|
|
|
|
|
// 更新设备
|
|
|
|
|
|
await axios.put(`/api/devices/${editingDevice.deviceId}`, deviceData);
|
|
|
|
|
|
message.success('设备更新成功');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 创建设备
|
|
|
|
|
|
await axios.post('/api/devices', deviceData);
|
|
|
|
|
|
message.success('设备创建成功');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setModalVisible(false);
|
|
|
|
|
|
fetchDevices();
|
|
|
|
|
|
setEditingDevice(null);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error(editingDevice ? '设备更新失败' : '设备创建失败');
|
|
|
|
|
|
console.error(editingDevice ? '设备更新失败:' : '设备创建失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-18 13:04:32 +08:00
|
|
|
|
// 搜索处理函数
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleSearch = values => {
|
2025-12-29 13:33:26 +08:00
|
|
|
|
setSearching(true);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:02:06 +08:00
|
|
|
|
setKeyword(values.keyword || '');
|
|
|
|
|
|
setStatus(values.status || 'all');
|
|
|
|
|
|
setType(values.type || 'all');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
// 筛选后的数据会通过useMemo自动更新,这里只需更新分页
|
|
|
|
|
|
setPagination(prev => ({ ...prev, current: 1 }));
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
// 短暂延迟后移除搜索状态,提供视觉反馈
|
|
|
|
|
|
setTimeout(() => setSearching(false), 300);
|
2025-12-18 13:04:32 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 重置筛选条件
|
|
|
|
|
|
const handleReset = () => {
|
2025-12-29 13:33:26 +08:00
|
|
|
|
setSearching(true);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 13:04:32 +08:00
|
|
|
|
setKeyword('');
|
|
|
|
|
|
setStatus('all');
|
|
|
|
|
|
setType('all');
|
|
|
|
|
|
searchForm.resetFields();
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 13:33:26 +08:00
|
|
|
|
// 短暂延迟后移除搜索状态
|
|
|
|
|
|
setTimeout(() => setSearching(false), 300);
|
2025-12-18 13:04:32 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 表格分页变化处理
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleTableChange = newPagination => {
|
2025-12-29 16:10:42 +08:00
|
|
|
|
setPagination(newPagination);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const start = (newPagination.current - 1) * newPagination.pageSize;
|
|
|
|
|
|
const end = start + newPagination.pageSize;
|
|
|
|
|
|
const currentPageData = filteredDevicesMemo.slice(start, end);
|
|
|
|
|
|
setCurrentPageDevices(currentPageData);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
fetchDevices(newPagination.current, newPagination.pageSize);
|
2025-12-18 13:04:32 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 批量删除设备
|
|
|
|
|
|
const handleBatchDelete = async () => {
|
|
|
|
|
|
Modal.confirm({
|
|
|
|
|
|
title: '批量删除确认',
|
|
|
|
|
|
content: `确定要删除选中的 ${selectedDevices.length} 个设备吗?此操作不可恢复!`,
|
|
|
|
|
|
okText: '确认删除',
|
|
|
|
|
|
okType: 'danger',
|
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
|
onOk: async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await axios.delete('/api/devices/batch-delete', {
|
2026-02-10 11:04:01 +08:00
|
|
|
|
data: { deviceIds: selectedDevices },
|
2025-12-18 19:11:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
message.success(response.data.message || '批量删除成功');
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
2025-12-29 16:29:10 +08:00
|
|
|
|
fetchDevices(1, 10, true);
|
2025-12-18 19:11:56 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('批量删除失败');
|
|
|
|
|
|
console.error('批量删除设备失败:', error);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
},
|
2025-12-18 19:11:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-09 16:22:00 +08:00
|
|
|
|
// 一键删除所有设备
|
|
|
|
|
|
const handleDeleteAll = async () => {
|
|
|
|
|
|
Modal.confirm({
|
|
|
|
|
|
title: '危险操作确认',
|
2026-02-10 11:04:01 +08:00
|
|
|
|
content:
|
|
|
|
|
|
'确定要删除所有设备吗?此操作将清空所有设备数据,包括相关的接线、网卡、端口等信息,且不可恢复!',
|
2026-02-09 16:22:00 +08:00
|
|
|
|
okText: '确认删除所有',
|
|
|
|
|
|
okType: 'danger',
|
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
|
onOk: async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await axios.delete('/api/devices/delete-all');
|
|
|
|
|
|
message.success(response.data.message || '成功删除所有设备');
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
|
|
|
|
|
fetchDevices(1, 10, true);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('删除所有设备失败');
|
|
|
|
|
|
console.error('删除所有设备失败:', error);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
},
|
2026-02-09 16:22:00 +08:00
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 删除设备
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleDelete = async deviceId => {
|
2025-12-18 10:45:13 +08:00
|
|
|
|
Modal.confirm({
|
|
|
|
|
|
title: '确认删除',
|
|
|
|
|
|
content: '确定要删除这个设备吗?',
|
|
|
|
|
|
okText: '删除',
|
|
|
|
|
|
okType: 'danger',
|
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
|
onOk: async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await axios.delete(`/api/devices/${deviceId}`);
|
|
|
|
|
|
message.success('设备删除成功');
|
|
|
|
|
|
fetchDevices();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('设备删除失败');
|
|
|
|
|
|
console.error('设备删除失败:', error);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
},
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 显示设备详情
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleShowDetail = device => {
|
2025-12-19 15:05:31 +08:00
|
|
|
|
setSelectedDevice(device);
|
|
|
|
|
|
setDetailModalVisible(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-12 13:27:32 +08:00
|
|
|
|
// 查看设备关联的工单
|
|
|
|
|
|
const handleViewDeviceTickets = device => {
|
|
|
|
|
|
navigate(`/tickets?deviceId=${device.deviceId}&deviceName=${encodeURIComponent(device.name)}&serialNumber=${encodeURIComponent(device.serialNumber || '')}&view=true`);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 为设备创建工单
|
|
|
|
|
|
const handleCreateTicketForDevice = device => {
|
|
|
|
|
|
navigate(`/tickets?deviceId=${device.deviceId}&deviceName=${encodeURIComponent(device.name)}&serialNumber=${encodeURIComponent(device.serialNumber || '')}&create=true`);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 打开批量状态变更模态框
|
|
|
|
|
|
const showBatchStatusModal = () => {
|
|
|
|
|
|
if (selectedDevices.length === 0) {
|
|
|
|
|
|
message.warning('请先选择要操作的设备');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
batchStatusForm.resetFields();
|
|
|
|
|
|
setBatchStatusModalVisible(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 执行批量状态变更
|
|
|
|
|
|
const handleBatchStatusChange = async () => {
|
2025-12-18 19:11:56 +08:00
|
|
|
|
try {
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const values = await batchStatusForm.validateFields();
|
|
|
|
|
|
setBatchStatusLoading(true);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const response = await axios.put('/api/devices/batch-status', {
|
|
|
|
|
|
deviceIds: selectedDevices,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
status: values.status,
|
2025-12-29 16:10:42 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
message.success(response.data.message || '批量状态变更成功');
|
|
|
|
|
|
setBatchStatusModalVisible(false);
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
|
|
|
|
|
fetchDevices();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
if (error.errorFields) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
message.error('批量状态变更失败');
|
|
|
|
|
|
console.error('批量状态变更失败:', error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setBatchStatusLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 打开导出选项模态框
|
|
|
|
|
|
const showExportModal = () => {
|
|
|
|
|
|
if (selectedDevices.length === 0) {
|
|
|
|
|
|
message.warning('请先选择要导出的设备');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setExportFormat('csv');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
setExportFields(
|
|
|
|
|
|
deviceFields.filter(f => f.visible && f.fieldName !== 'rackId').map(f => f.fieldName)
|
|
|
|
|
|
);
|
2025-12-29 16:10:42 +08:00
|
|
|
|
setExportModalVisible(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 执行增强导出
|
|
|
|
|
|
const handleEnhancedExport = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setExportLoading(true);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const fieldLabels = {};
|
|
|
|
|
|
deviceFields.forEach(field => {
|
|
|
|
|
|
fieldLabels[field.fieldName] = field.displayName;
|
|
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
let deviceIds = [];
|
|
|
|
|
|
if (exportScope === 'selected') {
|
|
|
|
|
|
deviceIds = selectedDevices;
|
|
|
|
|
|
} else if (exportScope === 'currentPage') {
|
|
|
|
|
|
deviceIds = filteredDevicesMemo.map(device => device.deviceId);
|
|
|
|
|
|
} else if (exportScope === 'all') {
|
|
|
|
|
|
deviceIds = allDevices.map(device => device.deviceId);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
if (deviceIds.length === 0) {
|
|
|
|
|
|
message.warning('没有可导出的设备');
|
|
|
|
|
|
setExportLoading(false);
|
2025-12-18 19:11:56 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const params = new URLSearchParams();
|
2025-12-29 16:10:42 +08:00
|
|
|
|
deviceIds.forEach(id => params.append('deviceIds', id));
|
|
|
|
|
|
params.append('format', exportFormat);
|
|
|
|
|
|
params.append('fields', JSON.stringify(exportFields));
|
|
|
|
|
|
params.append('fieldLabels', JSON.stringify(fieldLabels));
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
|
|
|
|
|
const response = await axios.get(`/api/devices/enhanced-export?${params.toString()}`, {
|
|
|
|
|
|
responseType: 'blob',
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const contentType = exportFormat === 'csv' ? 'text/csv; charset=gbk' : 'application/json';
|
|
|
|
|
|
const blob = new Blob([response.data], { type: contentType });
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const url = window.URL.createObjectURL(blob);
|
|
|
|
|
|
const link = document.createElement('a');
|
|
|
|
|
|
link.href = url;
|
2025-12-29 16:10:42 +08:00
|
|
|
|
link.download = `devices_export_${new Date().toISOString().split('T')[0]}.${exportFormat}`;
|
2025-12-18 19:11:56 +08:00
|
|
|
|
document.body.appendChild(link);
|
|
|
|
|
|
link.click();
|
|
|
|
|
|
document.body.removeChild(link);
|
|
|
|
|
|
window.URL.revokeObjectURL(url);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
message.success(`成功导出 ${deviceIds.length} 个设备`);
|
|
|
|
|
|
setExportModalVisible(false);
|
2025-12-18 19:11:56 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('导出失败');
|
2025-12-29 16:10:42 +08:00
|
|
|
|
console.error('增强导出失败:', error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setExportLoading(false);
|
2025-12-18 19:11:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 切换选择全部设备
|
|
|
|
|
|
const handleSelectAll = () => {
|
|
|
|
|
|
if (selectAll) {
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const allIds = filteredDevicesMemo.map(device => device.deviceId);
|
|
|
|
|
|
setSelectedDevices(allIds);
|
|
|
|
|
|
setSelectAll(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 处理选择变化
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleSelectionChange = selectedRowKeys => {
|
2025-12-29 16:10:42 +08:00
|
|
|
|
setSelectedDevices(selectedRowKeys);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
setSelectAll(
|
|
|
|
|
|
selectedRowKeys.length === filteredDevicesMemo.length && filteredDevicesMemo.length > 0
|
|
|
|
|
|
);
|
2025-12-29 16:10:42 +08:00
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 全选复选框的处理函数
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleSelectAllCheckbox = e => {
|
2025-12-29 16:10:42 +08:00
|
|
|
|
const checked = e.target.checked;
|
|
|
|
|
|
if (checked) {
|
|
|
|
|
|
const allIds = filteredDevicesMemo.map(device => device.deviceId);
|
|
|
|
|
|
setSelectedDevices(allIds);
|
|
|
|
|
|
setSelectAll(true);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleImport = async file => {
|
2025-12-18 19:11:56 +08:00
|
|
|
|
try {
|
|
|
|
|
|
setIsImporting(true);
|
|
|
|
|
|
setImportProgress(0);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportPhase('正在上传文件...');
|
2025-12-18 19:11:56 +08:00
|
|
|
|
setImportResult(null);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const formData = new FormData();
|
|
|
|
|
|
formData.append('csvFile', file);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
const response = await axios.post('/api/devices/import', formData, {
|
|
|
|
|
|
headers: {
|
2026-02-10 11:04:01 +08:00
|
|
|
|
'Content-Type': 'multipart/form-data',
|
2025-12-29 12:08:05 +08:00
|
|
|
|
},
|
2026-02-10 11:04:01 +08:00
|
|
|
|
onUploadProgress: progressEvent => {
|
2025-12-29 12:08:05 +08:00
|
|
|
|
const progress = Math.round((progressEvent.loaded * 50) / progressEvent.total);
|
|
|
|
|
|
setImportProgress(Math.min(progress, 50));
|
|
|
|
|
|
setImportPhase('正在上传文件...');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
},
|
2025-12-18 19:11:56 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportProgress(60);
|
|
|
|
|
|
setImportPhase('正在处理数据...');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
setImportProgress(80);
|
|
|
|
|
|
setImportPhase('正在验证数据...');
|
|
|
|
|
|
}, 200);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
setImportProgress(90);
|
|
|
|
|
|
setImportPhase('正在保存数据...');
|
|
|
|
|
|
}, 400);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
setImportResult(response.data);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportProgress(100);
|
|
|
|
|
|
setImportPhase('导入完成');
|
2025-12-18 19:11:56 +08:00
|
|
|
|
setIsImporting(false);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
const { success, failed } = response.data.statistics;
|
|
|
|
|
|
if (failed > 0) {
|
|
|
|
|
|
message.warning(`导入完成,但有 ${failed} 条记录导入失败`);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
message.success('所有记录导入成功');
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
fetchDevices();
|
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
setIsImporting(false);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportProgress(0);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
let errorMessage = '导入失败';
|
|
|
|
|
|
let errorDetails = [];
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
if (error.response) {
|
2025-12-30 14:01:16 +08:00
|
|
|
|
const { data, status } = error.response;
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
|
status === 500 &&
|
|
|
|
|
|
data &&
|
|
|
|
|
|
data.errors &&
|
|
|
|
|
|
Array.isArray(data.errors) &&
|
|
|
|
|
|
data.errors.length > 0
|
|
|
|
|
|
) {
|
|
|
|
|
|
errorDetails = data.errors.map(err => ({
|
2025-12-30 14:01:16 +08:00
|
|
|
|
row: err.row || 0,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
error: err.error || err.message || '服务器内部错误',
|
2025-12-30 14:01:16 +08:00
|
|
|
|
}));
|
|
|
|
|
|
errorMessage = `导入失败:${errorDetails[0].error}`;
|
|
|
|
|
|
} else if (data && data.errors && Array.isArray(data.errors)) {
|
2025-12-29 12:08:05 +08:00
|
|
|
|
errorDetails = data.errors.map((err, index) => ({
|
|
|
|
|
|
row: err.row || index + 1,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
error: err.error || err.message || '未知错误',
|
2025-12-29 12:08:05 +08:00
|
|
|
|
}));
|
|
|
|
|
|
errorMessage = `导入失败,共发现 ${errorDetails.length} 处数据错误`;
|
2025-12-30 14:01:16 +08:00
|
|
|
|
} else if (data && (data.message || data.error)) {
|
|
|
|
|
|
errorMessage = data.message || data.error;
|
2025-12-29 12:08:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else if (error.message) {
|
|
|
|
|
|
errorMessage = error.message;
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportResult({
|
|
|
|
|
|
success: false,
|
|
|
|
|
|
statistics: {
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
success: 0,
|
2025-12-30 14:01:16 +08:00
|
|
|
|
failed: errorDetails.length > 0 ? errorDetails.length : 1,
|
|
|
|
|
|
errors: errorDetails.length > 0 ? errorDetails : [{ row: 0, error: errorMessage }],
|
2026-02-10 11:04:01 +08:00
|
|
|
|
message: errorMessage,
|
|
|
|
|
|
},
|
2025-12-29 12:08:05 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 12:08:05 +08:00
|
|
|
|
message.error(errorMessage);
|
2025-12-18 19:11:56 +08:00
|
|
|
|
console.error('导入设备失败:', error);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-10 14:48:42 +08:00
|
|
|
|
// 使用从常量导入的映射,避免每次渲染重新创建
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 获取设备类型图标
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const getDeviceTypeIcon = type => {
|
2025-12-19 15:05:31 +08:00
|
|
|
|
const iconMap = {
|
|
|
|
|
|
server: <CloudServerOutlined style={{ color: '#1890ff' }} />,
|
|
|
|
|
|
switch: <SwapOutlined style={{ color: '#52c41a' }} />,
|
|
|
|
|
|
router: <SafetyOutlined style={{ color: '#faad14' }} />,
|
|
|
|
|
|
storage: <DatabaseOutlined style={{ color: '#722ed1' }} />,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
other: <AppstoreOutlined style={{ color: '#8c8c8c' }} />,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
};
|
|
|
|
|
|
return iconMap[type] || <AppstoreOutlined style={{ color: '#8c8c8c' }} />;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 处理列宽变化
|
|
|
|
|
|
const handleColumnResize = (key, width) => {
|
|
|
|
|
|
setColumnWidths(prev => ({ ...prev, [key]: width }));
|
|
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 重置列宽到默认值
|
|
|
|
|
|
const resetColumnWidths = () => {
|
|
|
|
|
|
setColumnWidths({});
|
|
|
|
|
|
message.success('列宽已重置为默认值');
|
|
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 16:10:42 +08:00
|
|
|
|
// 处理表头单元格拖拽 - 自定义实现
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleHeaderCellResize = key => column => ({
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: column.width,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
onResize: width => {
|
2025-12-29 16:10:42 +08:00
|
|
|
|
setColumnWidths(prev => ({ ...prev, [key]: width }));
|
|
|
|
|
|
},
|
2025-12-19 15:05:31 +08:00
|
|
|
|
});
|
2025-12-29 16:10:42 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 动态生成表格列配置
|
|
|
|
|
|
const columns = React.useMemo(() => {
|
|
|
|
|
|
const generatedColumns = [];
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 根据字段配置动态生成列,只显示visible为true的字段
|
2025-12-18 10:45:13 +08:00
|
|
|
|
deviceFields.forEach(field => {
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 只处理可见字段
|
|
|
|
|
|
if (!field.visible) return;
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 特殊处理机柜字段
|
|
|
|
|
|
if (field.fieldName === 'rackId') {
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 添加机房信息列
|
|
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: '所在机房',
|
|
|
|
|
|
dataIndex: ['Rack', 'Room', 'name'],
|
|
|
|
|
|
key: 'roomName',
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths.roomName || 120,
|
|
|
|
|
|
onHeaderCell: handleHeaderCellResize('roomName'),
|
2025-12-18 19:11:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
// 添加机柜信息列
|
2025-12-18 10:45:13 +08:00
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: field.displayName,
|
|
|
|
|
|
dataIndex: ['Rack', 'name'],
|
|
|
|
|
|
key: field.fieldName,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths[field.fieldName] || 120,
|
|
|
|
|
|
onHeaderCell: handleHeaderCellResize(field.fieldName),
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
}
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 特殊处理设备类型
|
|
|
|
|
|
else if (field.fieldName === 'type') {
|
|
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: field.displayName,
|
|
|
|
|
|
dataIndex: field.fieldName,
|
|
|
|
|
|
key: field.fieldName,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths[field.fieldName] || 100,
|
|
|
|
|
|
onHeaderCell: handleHeaderCellResize(field.fieldName),
|
2026-02-10 11:04:01 +08:00
|
|
|
|
render: type => {
|
2025-12-19 15:05:31 +08:00
|
|
|
|
return (
|
|
|
|
|
|
<Space>
|
|
|
|
|
|
{getDeviceTypeIcon(type)}
|
2026-02-10 14:48:42 +08:00
|
|
|
|
<span>{TYPE_MAP[type]}</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</Space>
|
|
|
|
|
|
);
|
2025-12-19 13:21:39 +08:00
|
|
|
|
},
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
// 特殊处理状态字段
|
|
|
|
|
|
else if (field.fieldName === 'status') {
|
|
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: field.displayName,
|
|
|
|
|
|
dataIndex: field.fieldName,
|
|
|
|
|
|
key: field.fieldName,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths[field.fieldName] || 100,
|
|
|
|
|
|
onHeaderCell: handleHeaderCellResize(field.fieldName),
|
2026-02-10 11:04:01 +08:00
|
|
|
|
render: status => {
|
2025-12-19 13:21:39 +08:00
|
|
|
|
if (Array.isArray(status)) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Space>
|
|
|
|
|
|
{status.map(s => (
|
2026-02-10 14:48:42 +08:00
|
|
|
|
<span key={s} style={{ color: STATUS_MAP[s]?.color || 'black' }}>
|
|
|
|
|
|
{STATUS_MAP[s]?.text || s}
|
2025-12-19 13:21:39 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Space>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
return (
|
2026-02-10 14:48:42 +08:00
|
|
|
|
<span style={{ color: STATUS_MAP[status]?.color || 'black' }}>
|
|
|
|
|
|
{STATUS_MAP[status]?.text || status}
|
2025-12-19 13:21:39 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
// 特殊处理日期字段
|
|
|
|
|
|
else if (field.fieldType === 'date') {
|
|
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: field.displayName,
|
|
|
|
|
|
dataIndex: field.fieldName,
|
|
|
|
|
|
key: field.fieldName,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths[field.fieldName] || 120,
|
|
|
|
|
|
onHeaderCell: handleHeaderCellResize(field.fieldName),
|
2026-02-10 11:04:01 +08:00
|
|
|
|
render: date => {
|
2025-12-19 13:21:39 +08:00
|
|
|
|
if (!date) return '';
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
const dateObj = new Date(date);
|
|
|
|
|
|
const formattedDate = dateObj.toLocaleDateString('zh-CN');
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 检查是否是保修到期字段
|
|
|
|
|
|
if (field.fieldName === 'warrantyExpiry') {
|
|
|
|
|
|
const today = new Date();
|
|
|
|
|
|
// 设置时间为同一天的00:00:00,确保只比较日期部分
|
|
|
|
|
|
today.setHours(0, 0, 0, 0);
|
|
|
|
|
|
dateObj.setHours(0, 0, 0, 0);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
// 如果保修日期已过期,显示为红色
|
|
|
|
|
|
if (dateObj < today) {
|
2026-02-10 11:04:01 +08:00
|
|
|
|
return (
|
|
|
|
|
|
<span style={{ color: '#d93025', fontWeight: 'bold' }}>{formattedDate}</span>
|
|
|
|
|
|
);
|
2025-12-19 13:21:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 13:21:39 +08:00
|
|
|
|
return formattedDate;
|
|
|
|
|
|
},
|
2025-12-18 10:45:13 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
// 普通字段
|
|
|
|
|
|
else {
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 为不同类型的字段设置不同的默认宽度
|
|
|
|
|
|
let defaultWidth = 120;
|
|
|
|
|
|
if (field.fieldName === 'deviceId' || field.fieldName === 'name') {
|
|
|
|
|
|
defaultWidth = 150;
|
|
|
|
|
|
} else if (field.fieldName === 'description') {
|
|
|
|
|
|
defaultWidth = 200;
|
|
|
|
|
|
} else if (field.fieldType === 'number') {
|
|
|
|
|
|
defaultWidth = 80;
|
|
|
|
|
|
} else if (field.fieldType === 'textarea') {
|
|
|
|
|
|
defaultWidth = 180;
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 为设备名称和ID列添加点击查看详情功能
|
|
|
|
|
|
const columnConfig = {
|
2025-12-18 10:45:13 +08:00
|
|
|
|
title: field.displayName,
|
|
|
|
|
|
dataIndex: field.fieldName,
|
|
|
|
|
|
key: field.fieldName,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width: columnWidths[field.fieldName] || defaultWidth,
|
2025-12-29 16:10:42 +08:00
|
|
|
|
minWidth: 80,
|
|
|
|
|
|
maxWidth: field.fieldType === 'textarea' ? 300 : 200,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
onHeaderCell: handleHeaderCellResize(field.fieldName),
|
2025-12-29 16:10:42 +08:00
|
|
|
|
ellipsis: field.fieldType !== 'textarea',
|
2025-12-19 15:05:31 +08:00
|
|
|
|
};
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
// 设备名称和ID列添加点击效果
|
|
|
|
|
|
if (field.fieldName === 'deviceId' || field.fieldName === 'name') {
|
|
|
|
|
|
columnConfig.render = (value, record) => (
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<a
|
2025-12-19 15:05:31 +08:00
|
|
|
|
onClick={() => handleShowDetail(record)}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
color: '#1890ff',
|
2025-12-19 15:05:31 +08:00
|
|
|
|
textDecoration: 'none',
|
2025-12-29 16:10:42 +08:00
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
|
display: 'block',
|
|
|
|
|
|
overflow: 'hidden',
|
|
|
|
|
|
textOverflow: 'ellipsis',
|
|
|
|
|
|
whiteSpace: 'nowrap',
|
2025-12-19 15:05:31 +08:00
|
|
|
|
}}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
onMouseEnter={e => (e.target.style.textDecoration = 'underline')}
|
|
|
|
|
|
onMouseLeave={e => (e.target.style.textDecoration = 'none')}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
>
|
|
|
|
|
|
{value || '-'}
|
|
|
|
|
|
</a>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-19 15:05:31 +08:00
|
|
|
|
generatedColumns.push(columnConfig);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
// 添加操作列
|
|
|
|
|
|
generatedColumns.push({
|
|
|
|
|
|
title: '操作',
|
|
|
|
|
|
key: 'action',
|
2025-12-29 16:10:42 +08:00
|
|
|
|
width: columnWidths.action || 80,
|
|
|
|
|
|
minWidth: 60,
|
|
|
|
|
|
maxWidth: 100,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
onHeaderCell: handleHeaderCellResize('action'),
|
2025-12-18 10:45:13 +08:00
|
|
|
|
render: (_, record) => (
|
2025-12-29 16:10:42 +08:00
|
|
|
|
<div style={{ display: 'flex', gap: '4px' }}>
|
|
|
|
|
|
<Tooltip title="编辑">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon={<EditOutlined />}
|
|
|
|
|
|
onClick={() => showModal(record)}
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
style={{ color: '#1890ff', padding: '4px 8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
<Tooltip title="删除">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
danger
|
|
|
|
|
|
icon={<DeleteOutlined />}
|
|
|
|
|
|
onClick={() => handleDelete(record.deviceId)}
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
style={{ padding: '4px 8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
</div>
|
2025-12-18 10:45:13 +08:00
|
|
|
|
),
|
|
|
|
|
|
});
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
return generatedColumns;
|
2025-12-19 15:05:31 +08:00
|
|
|
|
}, [deviceFields, columnWidths]);
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 保存字段配置
|
2026-02-10 11:04:01 +08:00
|
|
|
|
const handleSaveFieldConfig = async values => {
|
2025-12-18 19:11:56 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 更新设备字段配置的可见性
|
|
|
|
|
|
const updatedFields = deviceFields.map(field => ({
|
|
|
|
|
|
...field,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
visible: values[field.fieldName],
|
2025-12-18 19:11:56 +08:00
|
|
|
|
}));
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 保存到后端
|
|
|
|
|
|
await axios.post('/api/deviceFields/config', updatedFields);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
// 更新本地状态
|
|
|
|
|
|
setDeviceFields(updatedFields);
|
|
|
|
|
|
message.success('字段配置保存成功');
|
|
|
|
|
|
setFieldConfigModalVisible(false);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('字段配置保存失败');
|
|
|
|
|
|
console.error('保存字段配置失败:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 重置字段配置为默认值
|
|
|
|
|
|
const handleResetFieldConfig = () => {
|
|
|
|
|
|
const defaultFields = defaultDeviceFields;
|
|
|
|
|
|
setDeviceFields(defaultFields);
|
|
|
|
|
|
message.success('字段配置已重置为默认值');
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-10 09:32:16 +08:00
|
|
|
|
// 样式已从外部样式文件导入,无需在组件内定义
|
2025-12-29 11:15:55 +08:00
|
|
|
|
|
2025-12-18 10:45:13 +08:00
|
|
|
|
return (
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<div style={pageContainerStyle}>
|
2026-02-10 09:32:16 +08:00
|
|
|
|
<style>{generateGlobalStyles(designTokens)}</style>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<div style={headerStyle}>
|
|
|
|
|
|
<div style={titleRowStyle}>
|
|
|
|
|
|
<div style={titleSectionStyle}>
|
|
|
|
|
|
<div style={titleIconStyle}>
|
|
|
|
|
|
<CloudServerOutlined style={{ fontSize: '20px', color: '#ffffff' }} />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={titleTextStyle}>
|
|
|
|
|
|
<h1 style={pageTitleStyle}>设备管理</h1>
|
|
|
|
|
|
<p style={pageSubtitleStyle}>管理您的IT设备资产</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<div style={{ display: 'flex', gap: designTokens.spacing.sm, flexWrap: 'wrap' }}>
|
|
|
|
|
|
<Button
|
2026-02-06 09:53:59 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
|
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
}}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
icon={<PlusOutlined />}
|
|
|
|
|
|
onClick={() => showModal()}
|
|
|
|
|
|
>
|
|
|
|
|
|
添加设备
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2026-02-06 09:53:59 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
|
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
}}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
icon={<UploadOutlined />}
|
|
|
|
|
|
onClick={() => setImportModalVisible(true)}
|
|
|
|
|
|
>
|
|
|
|
|
|
导入
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2026-02-06 09:53:59 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
|
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
}}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
icon={<ExportOutlined />}
|
|
|
|
|
|
onClick={showExportModal}
|
|
|
|
|
|
>
|
|
|
|
|
|
导出
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2026-02-06 09:53:59 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
|
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
}}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
icon={<SettingOutlined />}
|
|
|
|
|
|
onClick={() => setFieldConfigModalVisible(true)}
|
|
|
|
|
|
>
|
|
|
|
|
|
字段配置
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-01-20 11:28:53 +08:00
|
|
|
|
}}
|
|
|
|
|
|
icon={<ReloadOutlined />}
|
|
|
|
|
|
disabled={selectedDevices.length === 0}
|
|
|
|
|
|
onClick={showBatchStatusModal}
|
|
|
|
|
|
>
|
|
|
|
|
|
状态变更 ({selectedDevices.length})
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
style={{
|
|
|
|
|
|
...secondaryActionStyle,
|
2026-02-06 09:53:59 +08:00
|
|
|
|
color: designTokens.colors.primary.main,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderColor: designTokens.colors.primary.main,
|
2026-01-20 11:28:53 +08:00
|
|
|
|
}}
|
|
|
|
|
|
icon={<DeleteOutlined />}
|
|
|
|
|
|
disabled={selectedDevices.length === 0}
|
|
|
|
|
|
onClick={handleBatchDelete}
|
|
|
|
|
|
>
|
|
|
|
|
|
批量删除 ({selectedDevices.length})
|
|
|
|
|
|
</Button>
|
2026-02-09 16:22:00 +08:00
|
|
|
|
<Button
|
2026-02-10 09:32:16 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
height: '36px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
fontSize: '13px',
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
gap: '6px',
|
|
|
|
|
|
background: designTokens.colors.error.main,
|
|
|
|
|
|
border: 'none',
|
2026-02-10 11:04:01 +08:00
|
|
|
|
color: '#ffffff',
|
2026-02-10 09:32:16 +08:00
|
|
|
|
}}
|
2026-02-09 16:22:00 +08:00
|
|
|
|
icon={<DeleteOutlined />}
|
|
|
|
|
|
onClick={handleDeleteAll}
|
|
|
|
|
|
>
|
|
|
|
|
|
删除所有
|
|
|
|
|
|
</Button>
|
2026-01-20 11:28:53 +08:00
|
|
|
|
</div>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
</div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
</div>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Card
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
style={filterCardStyle}
|
|
|
|
|
|
styles={{
|
|
|
|
|
|
body: {
|
|
|
|
|
|
padding: `${designTokens.spacing.md}px ${designTokens.spacing.lg}px`,
|
|
|
|
|
|
display: 'flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
gap: designTokens.spacing.md,
|
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
|
},
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Form
|
|
|
|
|
|
form={searchForm}
|
|
|
|
|
|
layout="inline"
|
|
|
|
|
|
onFinish={handleSearch}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
style={{ flex: 1, display: 'flex', flexWrap: 'wrap', gap: designTokens.spacing.md }}
|
|
|
|
|
|
className="filter-form"
|
2025-12-29 11:15:55 +08:00
|
|
|
|
>
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<Form.Item name="keyword" style={{ margin: 0 }}>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Input
|
2026-01-20 11:28:53 +08:00
|
|
|
|
placeholder="搜索设备..."
|
|
|
|
|
|
prefix={<SearchOutlined style={{ color: designTokens.colors.primary.main }} />}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
style={{
|
2026-01-20 11:28:53 +08:00
|
|
|
|
width: '280px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.medium,
|
|
|
|
|
|
border: `1px solid ${designTokens.colors.border.light}`,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
transition: `all ${designTokens.transitions.fast}`,
|
2025-12-29 11:15:55 +08:00
|
|
|
|
}}
|
|
|
|
|
|
value={keyword}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
onChange={e => setKeyword(e.target.value)}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</Form.Item>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<Form.Item name="status" style={{ margin: 0 }}>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Select
|
|
|
|
|
|
value={status}
|
|
|
|
|
|
onChange={setStatus}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
style={{ width: '140px', borderRadius: designTokens.borderRadius.medium }}
|
2026-02-10 14:17:26 +08:00
|
|
|
|
styles={{ popup: { root: { borderRadius: designTokens.borderRadius.medium } } }}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Option value="all">所有状态</Option>
|
|
|
|
|
|
<Option value="running">运行中</Option>
|
|
|
|
|
|
<Option value="maintenance">维护中</Option>
|
|
|
|
|
|
<Option value="offline">离线</Option>
|
|
|
|
|
|
<Option value="fault">故障</Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<Form.Item name="type" style={{ margin: 0 }}>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Select
|
|
|
|
|
|
value={type}
|
|
|
|
|
|
onChange={setType}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
style={{ width: '140px', borderRadius: designTokens.borderRadius.medium }}
|
2026-02-10 14:17:26 +08:00
|
|
|
|
styles={{ popup: { root: { borderRadius: designTokens.borderRadius.medium } } }}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Option value="all">所有类型</Option>
|
|
|
|
|
|
<Option value="server">服务器</Option>
|
|
|
|
|
|
<Option value="switch">交换机</Option>
|
|
|
|
|
|
<Option value="router">路由器</Option>
|
|
|
|
|
|
<Option value="storage">存储设备</Option>
|
|
|
|
|
|
<Option value="other">其他设备</Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<Form.Item style={{ margin: 0 }}>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Space>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
2026-01-20 11:28:53 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
height: '36px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.medium,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
2026-02-10 11:04:01 +08:00
|
|
|
|
boxShadow: designTokens.shadows.small,
|
2026-01-20 11:28:53 +08:00
|
|
|
|
}}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
icon={<SearchOutlined />}
|
2026-01-20 11:28:53 +08:00
|
|
|
|
htmlType="submit"
|
|
|
|
|
|
loading={searching}
|
2025-12-18 13:04:32 +08:00
|
|
|
|
>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
搜索
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2026-01-20 11:28:53 +08:00
|
|
|
|
style={{
|
|
|
|
|
|
height: '36px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.medium,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
border: `1px solid ${designTokens.colors.border.light}`,
|
2026-01-20 11:28:53 +08:00
|
|
|
|
}}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
onClick={handleReset}
|
2025-12-18 13:04:32 +08:00
|
|
|
|
>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
重置
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</Space>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
</Form>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: designTokens.spacing.sm }}>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
icon={<ReloadOutlined />}
|
|
|
|
|
|
onClick={() => fetchDevices(1, pagination.pageSize, true)}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.medium,
|
|
|
|
|
|
border: `1px solid ${designTokens.colors.border.light}`,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
height: '36px',
|
2026-01-20 11:28:53 +08:00
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
刷新
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
</Card>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Card style={cardStyle}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{!loading && filteredDevicesMemo.length === 0 && !searching && (
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
2026-02-10 14:48:42 +08:00
|
|
|
|
...emptyStateStyle,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
color: designTokens.colors.text.secondary,
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<SearchOutlined
|
|
|
|
|
|
style={{
|
2026-02-10 14:48:42 +08:00
|
|
|
|
...emptyStateIconStyle,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
color: designTokens.colors.border.light,
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
2025-12-29 13:33:26 +08:00
|
|
|
|
<p>暂无设备数据</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2025-12-29 16:29:10 +08:00
|
|
|
|
{filteredDevicesMemo.length > 0 && (
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div
|
|
|
|
|
|
className="device-table-wrapper"
|
|
|
|
|
|
style={{
|
2026-02-10 14:48:42 +08:00
|
|
|
|
...tableContainerStyle,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
borderRadius: designTokens.borderRadius.medium,
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-29 16:29:10 +08:00
|
|
|
|
<Table
|
2026-02-10 11:04:01 +08:00
|
|
|
|
columns={columns}
|
|
|
|
|
|
dataSource={filteredDevicesMemo}
|
|
|
|
|
|
rowKey="deviceId"
|
|
|
|
|
|
loading={loading || searching}
|
|
|
|
|
|
pagination={{
|
|
|
|
|
|
...pagination,
|
|
|
|
|
|
showSizeChanger: true,
|
|
|
|
|
|
showQuickJumper: true,
|
|
|
|
|
|
pageSizeOptions: ['10', '20', '30', '50', '100'],
|
|
|
|
|
|
showTotal: total => `共 ${total} 条记录`,
|
|
|
|
|
|
style: { marginTop: '16px' },
|
|
|
|
|
|
}}
|
|
|
|
|
|
onChange={handleTableChange}
|
2026-02-10 14:17:26 +08:00
|
|
|
|
scroll={{ y: 500, scrollToFirstRowOnChange: true }}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
virtual
|
|
|
|
|
|
components={{
|
|
|
|
|
|
header: {
|
|
|
|
|
|
cell: ResizableTitle,
|
|
|
|
|
|
},
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={{ width: '100%', maxWidth: '100%' }}
|
|
|
|
|
|
size="middle"
|
|
|
|
|
|
showHeader={filteredDevicesMemo.length > 0}
|
|
|
|
|
|
rowSelection={{
|
|
|
|
|
|
selectedRowKeys: selectedDevices,
|
|
|
|
|
|
onChange: handleSelectionChange,
|
|
|
|
|
|
columnWidth: 48,
|
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
|
type: 'checkbox',
|
|
|
|
|
|
crossPageSelect: true,
|
|
|
|
|
|
selections: [
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'all',
|
|
|
|
|
|
text: '全选',
|
|
|
|
|
|
onSelect: () => {
|
|
|
|
|
|
const allIds = filteredDevicesMemo.map(device => device.deviceId);
|
|
|
|
|
|
setSelectedDevices(allIds);
|
|
|
|
|
|
setSelectAll(true);
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'invert',
|
|
|
|
|
|
text: '反选',
|
|
|
|
|
|
onSelect: () => {
|
|
|
|
|
|
const visibleIds = filteredDevicesMemo.map(device => device.deviceId);
|
|
|
|
|
|
const newSelected = visibleIds.filter(id => !selectedDevices.includes(id));
|
|
|
|
|
|
setSelectedDevices(newSelected);
|
|
|
|
|
|
setSelectAll(newSelected.length === filteredDevicesMemo.length);
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
key: 'none',
|
|
|
|
|
|
text: '清除选择',
|
|
|
|
|
|
onSelect: () => {
|
|
|
|
|
|
setSelectedDevices([]);
|
|
|
|
|
|
setSelectAll(false);
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
}}
|
|
|
|
|
|
onRow={record => ({
|
|
|
|
|
|
onClick: () =>
|
|
|
|
|
|
handleSelectionChange(
|
|
|
|
|
|
selectedDevices.includes(record.deviceId)
|
|
|
|
|
|
? selectedDevices.filter(id => id !== record.deviceId)
|
|
|
|
|
|
: [...selectedDevices, record.deviceId]
|
|
|
|
|
|
),
|
|
|
|
|
|
})}
|
|
|
|
|
|
rowClassName={(record, index) => {
|
|
|
|
|
|
if (selectedDevices.includes(record.deviceId)) {
|
|
|
|
|
|
return 'ant-table-row-selected';
|
|
|
|
|
|
}
|
|
|
|
|
|
return index % 2 === 0 ? 'ant-table-row-even' : 'ant-table-row-odd';
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2025-12-29 16:29:10 +08:00
|
|
|
|
)}
|
2025-12-18 10:45:13 +08:00
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
|
|
|
|
<Modal
|
2025-12-29 11:15:55 +08:00
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{editingDevice ? (
|
|
|
|
|
|
<EditOutlined style={{ color: '#667eea' }} />
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<PlusOutlined style={{ color: '#667eea' }} />
|
|
|
|
|
|
)}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
{editingDevice ? '编辑设备' : '添加设备'}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2025-12-18 10:45:13 +08:00
|
|
|
|
open={modalVisible}
|
|
|
|
|
|
onCancel={handleCancel}
|
|
|
|
|
|
footer={null}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
width={700}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
style={{ borderRadius: '16px' }}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 50px 16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2026-02-06 09:57:30 +08:00
|
|
|
|
className="device-modal"
|
2025-12-18 10:45:13 +08:00
|
|
|
|
>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Form form={form} layout="vertical" onFinish={handleSubmit}>
|
|
|
|
|
|
{deviceFields
|
|
|
|
|
|
.filter(field => field.fieldName !== 'deviceId')
|
|
|
|
|
|
.map(field => {
|
|
|
|
|
|
let control = null;
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2026-02-10 11:04:01 +08:00
|
|
|
|
switch (field.fieldType) {
|
|
|
|
|
|
case 'text':
|
|
|
|
|
|
case 'string':
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
placeholder={`请输入${field.displayName}`}
|
|
|
|
|
|
style={{ borderRadius: '8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'number':
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<InputNumber
|
|
|
|
|
|
placeholder={`请输入${field.displayName}`}
|
|
|
|
|
|
min={0}
|
|
|
|
|
|
style={{ width: '100%', borderRadius: '8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'boolean':
|
|
|
|
|
|
control = <Switch />;
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'date':
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<DatePicker
|
|
|
|
|
|
style={{ width: '100%', borderRadius: '8px' }}
|
|
|
|
|
|
placeholder={`请选择${field.displayName}`}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'textarea':
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<Input.TextArea
|
|
|
|
|
|
placeholder={`请输入${field.displayName}`}
|
|
|
|
|
|
rows={3}
|
|
|
|
|
|
style={{ borderRadius: '8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'select':
|
|
|
|
|
|
if (field.fieldName === 'rackId') {
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<Select
|
|
|
|
|
|
placeholder={`请选择${field.displayName}`}
|
|
|
|
|
|
style={{ borderRadius: '8px' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
{racks.map(rack => (
|
|
|
|
|
|
<Option key={rack.rackId} value={rack.rackId}>
|
|
|
|
|
|
{rack.name} ({rack.rackId})
|
|
|
|
|
|
</Option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<Select
|
|
|
|
|
|
placeholder={`请选择${field.displayName}`}
|
|
|
|
|
|
style={{ borderRadius: '8px' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
{field.options &&
|
|
|
|
|
|
field.options.map(option => (
|
|
|
|
|
|
<Option key={option.value} value={option.value}>
|
|
|
|
|
|
{option.label}
|
|
|
|
|
|
</Option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
control = (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
placeholder={`请输入${field.displayName}`}
|
|
|
|
|
|
style={{ borderRadius: '8px' }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
key={field.fieldName}
|
|
|
|
|
|
name={field.fieldName}
|
|
|
|
|
|
label={field.displayName}
|
|
|
|
|
|
rules={
|
|
|
|
|
|
field.required && field.fieldName !== 'deviceId'
|
|
|
|
|
|
? [{ required: true, message: `请输入${field.displayName}` }]
|
|
|
|
|
|
: []
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
{control}
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
2025-12-18 10:45:13 +08:00
|
|
|
|
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<Form.Item style={{ textAlign: 'right', marginTop: '24px' }}>
|
2025-12-18 10:45:13 +08:00
|
|
|
|
<Space>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button onClick={handleCancel} style={secondaryActionStyle}>
|
|
|
|
|
|
取消
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
htmlType="submit"
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
确定
|
|
|
|
|
|
</Button>
|
2025-12-18 10:45:13 +08:00
|
|
|
|
</Space>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
</Modal>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
|
|
|
|
|
|
<Modal
|
2025-12-29 11:15:55 +08:00
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
|
|
|
|
|
<SettingOutlined style={{ color: '#667eea' }} />
|
|
|
|
|
|
字段配置
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
open={fieldConfigModalVisible}
|
|
|
|
|
|
onCancel={() => setFieldConfigModalVisible(false)}
|
|
|
|
|
|
footer={null}
|
|
|
|
|
|
width={600}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Form
|
|
|
|
|
|
layout="vertical"
|
|
|
|
|
|
onFinish={handleSaveFieldConfig}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
initialValues={deviceFields.reduce(
|
|
|
|
|
|
(acc, field) => ({
|
|
|
|
|
|
...acc,
|
|
|
|
|
|
[field.fieldName]: field.visible,
|
|
|
|
|
|
}),
|
|
|
|
|
|
{}
|
|
|
|
|
|
)}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
>
|
|
|
|
|
|
<div style={{ maxHeight: 400, overflowY: 'auto' }}>
|
|
|
|
|
|
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(3, 1fr)', gap: '12px' }}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{deviceFields
|
|
|
|
|
|
.filter(field => field.fieldName !== 'deviceId')
|
|
|
|
|
|
.map(field => (
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
key={field.fieldName}
|
|
|
|
|
|
name={field.fieldName}
|
|
|
|
|
|
valuePropName="checked"
|
|
|
|
|
|
noStyle
|
|
|
|
|
|
>
|
|
|
|
|
|
<Checkbox style={{ marginBottom: '8px' }}>{field.displayName}</Checkbox>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
))}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
<Form.Item style={{ textAlign: 'right', marginTop: '20px' }}>
|
|
|
|
|
|
<Space>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
onClick={() => setFieldConfigModalVisible(false)}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
|
|
|
|
|
取消
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button onClick={handleResetFieldConfig} style={secondaryActionStyle}>
|
|
|
|
|
|
重置默认
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
htmlType="submit"
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
保存
|
|
|
|
|
|
</Button>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</Space>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
|
|
<Modal
|
2025-12-29 11:15:55 +08:00
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
|
|
|
|
|
<UploadOutlined style={{ color: '#667eea' }} />
|
|
|
|
|
|
导入设备
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
open={importModalVisible}
|
|
|
|
|
|
onCancel={() => {
|
|
|
|
|
|
setImportModalVisible(false);
|
|
|
|
|
|
setImportProgress(0);
|
2025-12-29 12:08:05 +08:00
|
|
|
|
setImportPhase('');
|
2025-12-18 19:11:56 +08:00
|
|
|
|
setImportResult(null);
|
|
|
|
|
|
setIsImporting(false);
|
|
|
|
|
|
}}
|
|
|
|
|
|
footer={null}
|
2025-12-29 12:08:05 +08:00
|
|
|
|
width={650}
|
2025-12-22 08:59:44 +08:00
|
|
|
|
destroyOnHidden
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
>
|
2025-12-19 13:21:39 +08:00
|
|
|
|
{!isImporting && !importResult ? (
|
2025-12-18 19:11:56 +08:00
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<p style={{ color: '#666', marginBottom: '8px' }}>请上传CSV格式的设备数据文件</p>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<p style={{ color: '#999', fontSize: '12px', marginBottom: '20px' }}>
|
|
|
|
|
|
支持的编码格式:GBK
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginBottom: '20px',
|
|
|
|
|
|
padding: '16px',
|
|
|
|
|
|
background: 'linear-gradient(180deg, #fafafa 0%, #ffffff 100%)',
|
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
|
border: '1px solid #f0f0f0',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<p style={{ fontWeight: '600', marginBottom: '8px', color: '#333' }}>
|
|
|
|
|
|
CSV文件格式要求:
|
|
|
|
|
|
</p>
|
2026-02-04 17:10:58 +08:00
|
|
|
|
<div style={{ maxHeight: '200px', overflowY: 'auto' }}>
|
|
|
|
|
|
{(() => {
|
|
|
|
|
|
// 获取必填字段
|
|
|
|
|
|
const requiredFields = deviceFields.filter(f => f.visible && f.required);
|
|
|
|
|
|
// 获取可选字段
|
|
|
|
|
|
const optionalFields = deviceFields.filter(f => f.visible && !f.required);
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2026-02-04 17:10:58 +08:00
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
{requiredFields.length > 0 && (
|
|
|
|
|
|
<div style={{ marginBottom: '8px' }}>
|
|
|
|
|
|
<span style={{ color: '#d93025', fontWeight: '500' }}>必填字段:</span>
|
|
|
|
|
|
<span style={{ color: '#666', fontSize: '13px' }}>
|
|
|
|
|
|
{requiredFields.map(f => f.displayName).join('、')}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{optionalFields.length > 0 && (
|
|
|
|
|
|
<div style={{ marginBottom: '8px' }}>
|
|
|
|
|
|
<span style={{ color: '#666', fontWeight: '500' }}>可选字段:</span>
|
|
|
|
|
|
<span style={{ color: '#666', fontSize: '13px' }}>
|
|
|
|
|
|
{optionalFields.map(f => f.displayName).join('、')}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
|
|
|
|
|
})()}
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<ul
|
|
|
|
|
|
style={{
|
|
|
|
|
|
paddingLeft: '20px',
|
|
|
|
|
|
marginBottom: '10px',
|
|
|
|
|
|
color: '#666',
|
|
|
|
|
|
fontSize: '13px',
|
|
|
|
|
|
marginTop: '12px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
设备类型:server(服务器)、switch(交换机)、router(路由器)、storage(存储设备)、other(其他)
|
|
|
|
|
|
</li>
|
2026-02-04 17:10:58 +08:00
|
|
|
|
<li>状态值:running(运行中)、maintenance(维护中)、offline(离线)、fault(故障)</li>
|
|
|
|
|
|
<li>日期格式:YYYY-MM-DD (例如:2023-01-01)</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<div style={{ marginBottom: '20px' }}>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
<a href="/api/devices/import-template" download="设备导入模板.csv">
|
2026-01-20 11:28:53 +08:00
|
|
|
|
<Button icon={<DownloadOutlined />} style={secondaryActionStyle}>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
下载导入模板
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</a>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ color: '#999', fontSize: '12px', marginLeft: '10px' }}>
|
|
|
|
|
|
包含示例数据的CSV模板文件(根据当前字段配置生成)
|
|
|
|
|
|
</span>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
|
2025-12-18 19:11:56 +08:00
|
|
|
|
<Upload
|
|
|
|
|
|
name="csvFile"
|
|
|
|
|
|
accept=".csv"
|
|
|
|
|
|
showUploadList={false}
|
|
|
|
|
|
beforeUpload={handleImport}
|
|
|
|
|
|
maxCount={1}
|
|
|
|
|
|
>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
icon={<UploadOutlined />}
|
|
|
|
|
|
block
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
选择CSV文件
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</Upload>
|
|
|
|
|
|
</div>
|
2025-12-29 12:08:05 +08:00
|
|
|
|
) : isImporting ? (
|
2025-12-18 19:11:56 +08:00
|
|
|
|
<div>
|
2025-12-29 12:08:05 +08:00
|
|
|
|
<div style={{ display: 'flex', alignItems: 'center', marginBottom: '16px' }}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
width: '48px',
|
|
|
|
|
|
height: '48px',
|
|
|
|
|
|
borderRadius: '50%',
|
|
|
|
|
|
background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
|
|
|
|
|
|
display: 'flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
marginRight: '16px',
|
|
|
|
|
|
color: '#fff',
|
|
|
|
|
|
fontSize: '20px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-29 12:08:05 +08:00
|
|
|
|
<UploadOutlined spin />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<p
|
|
|
|
|
|
style={{
|
|
|
|
|
|
margin: '0 0 4px 0',
|
|
|
|
|
|
fontWeight: '600',
|
|
|
|
|
|
color: '#333',
|
|
|
|
|
|
fontSize: '16px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
正在导入设备数据
|
|
|
|
|
|
</p>
|
2025-12-29 12:08:05 +08:00
|
|
|
|
<p style={{ margin: 0, color: '#667eea', fontSize: '14px' }}>{importPhase}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Progress
|
|
|
|
|
|
percent={importProgress}
|
|
|
|
|
|
status="active"
|
2025-12-29 12:08:05 +08:00
|
|
|
|
strokeColor={{ '0%': '#667eea', '100%': '#764ba2' }}
|
|
|
|
|
|
format={() => `${importProgress}%`}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2025-12-29 13:02:06 +08:00
|
|
|
|
) : importResult?.statistics ? (
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
<p style={{ marginBottom: '10px', fontWeight: '600' }}>导入完成:</p>
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
display: 'grid',
|
|
|
|
|
|
gridTemplateColumns: 'repeat(3, 1fr)',
|
|
|
|
|
|
gap: '12px',
|
|
|
|
|
|
marginBottom: '16px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
color: '#fff',
|
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style={{ fontSize: '24px', fontWeight: '700' }}>
|
|
|
|
|
|
{importResult.statistics.total || 0}
|
2025-12-29 11:15:55 +08:00
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div style={{ fontSize: '12px', opacity: 0.9 }}>总记录数</div>
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
background: 'linear-gradient(135deg, #52c41a 0%, #389e0d 100%)',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
color: '#fff',
|
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style={{ fontSize: '24px', fontWeight: '700' }}>
|
|
|
|
|
|
{importResult.statistics.success || 0}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{ fontSize: '12px', opacity: 0.9 }}>成功</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
background: 'linear-gradient(135deg, #ff4d4f 0%, #cf1322 100%)',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
color: '#fff',
|
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div style={{ fontSize: '24px', fontWeight: '700' }}>
|
|
|
|
|
|
{importResult.statistics.failed || 0}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style={{ fontSize: '12px', opacity: 0.9 }}>失败</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{(() => {
|
|
|
|
|
|
const errors = importResult.statistics?.errors;
|
|
|
|
|
|
const hasErrors = Array.isArray(errors) && errors.length > 0;
|
|
|
|
|
|
const hasFailedRecords = importResult.statistics?.failed > 0;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
(hasErrors || hasFailedRecords) && (
|
|
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginTop: '20px',
|
|
|
|
|
|
maxHeight: 400,
|
|
|
|
|
|
overflowY: 'auto',
|
|
|
|
|
|
border: '1px solid #ffcccc',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
backgroundColor: '#fff7f7',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<h4 style={{ color: '#d93025', marginBottom: '12px', fontWeight: '600' }}>
|
|
|
|
|
|
失败记录详情:
|
|
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
|
|
|
|
{hasErrors ? (
|
|
|
|
|
|
<table
|
|
|
|
|
|
style={{ width: '100%', borderCollapse: 'collapse', fontSize: '13px' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
<tr style={{ backgroundColor: '#ffeeee' }}>
|
|
|
|
|
|
<th
|
|
|
|
|
|
style={{
|
|
|
|
|
|
border: '1px solid #ffcccc',
|
|
|
|
|
|
padding: '8px',
|
|
|
|
|
|
textAlign: 'left',
|
|
|
|
|
|
width: '80px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
行号
|
|
|
|
|
|
</th>
|
|
|
|
|
|
<th
|
|
|
|
|
|
style={{
|
|
|
|
|
|
border: '1px solid #ffcccc',
|
|
|
|
|
|
padding: '8px',
|
|
|
|
|
|
textAlign: 'left',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
失败原因
|
|
|
|
|
|
</th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
{errors.map((item, index) => (
|
|
|
|
|
|
<tr key={index} style={{ borderBottom: '1px solid #ffcccc' }}>
|
|
|
|
|
|
<td
|
|
|
|
|
|
style={{
|
|
|
|
|
|
border: '1px solid #ffcccc',
|
|
|
|
|
|
padding: '8px',
|
|
|
|
|
|
fontWeight: 'bold',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{item.row || index + 1}
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td
|
|
|
|
|
|
style={{
|
|
|
|
|
|
border: '1px solid #ffcccc',
|
|
|
|
|
|
padding: '8px',
|
|
|
|
|
|
color: '#d93025',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{item.error || '未知错误'}
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<div style={{ color: '#d93025', padding: '20px', textAlign: 'center' }}>
|
|
|
|
|
|
检测到 {importResult.statistics.failed} 条导入失败记录,但未提供详细错误信息
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
);
|
|
|
|
|
|
})()}
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setImportModalVisible(false);
|
|
|
|
|
|
setImportProgress(0);
|
|
|
|
|
|
setImportResult(null);
|
|
|
|
|
|
setIsImporting(false);
|
|
|
|
|
|
fetchDevices();
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginTop: '20px',
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
确定
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : null}
|
2025-12-18 19:11:56 +08:00
|
|
|
|
</Modal>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
|
|
|
|
|
|
<Modal
|
2025-12-29 11:15:55 +08:00
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
|
|
|
|
|
<AppstoreOutlined style={{ color: '#667eea' }} />
|
|
|
|
|
|
设备详情
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
open={detailModalVisible}
|
|
|
|
|
|
onCancel={() => {
|
|
|
|
|
|
setDetailModalVisible(false);
|
|
|
|
|
|
setSelectedDevice(null);
|
|
|
|
|
|
}}
|
|
|
|
|
|
footer={[
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="close"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setDetailModalVisible(false);
|
|
|
|
|
|
setSelectedDevice(null);
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
关闭
|
|
|
|
|
|
</Button>,
|
2026-02-12 13:27:32 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="viewTickets"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
handleViewDeviceTickets(selectedDevice);
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
|
|
|
|
|
查看工单
|
|
|
|
|
|
</Button>,
|
|
|
|
|
|
<Button
|
|
|
|
|
|
key="createTicket"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
handleCreateTicketForDevice(selectedDevice);
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
|
|
|
|
|
创建工单
|
|
|
|
|
|
</Button>,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="edit"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
setDetailModalVisible(false);
|
|
|
|
|
|
showModal(selectedDevice);
|
|
|
|
|
|
}}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
编辑
|
2026-02-10 11:04:01 +08:00
|
|
|
|
</Button>,
|
2025-12-19 15:05:31 +08:00
|
|
|
|
]}
|
|
|
|
|
|
width={800}
|
2025-12-22 08:59:44 +08:00
|
|
|
|
destroyOnHidden
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
>
|
|
|
|
|
|
{selectedDevice && (
|
|
|
|
|
|
<div>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Card
|
|
|
|
|
|
size="small"
|
2025-12-29 11:15:55 +08:00
|
|
|
|
title={
|
|
|
|
|
|
<span style={{ fontWeight: '600' }}>
|
|
|
|
|
|
<CloudServerOutlined style={{ marginRight: '8px', color: '#667eea' }} />
|
|
|
|
|
|
基本信息
|
|
|
|
|
|
</span>
|
|
|
|
|
|
}
|
|
|
|
|
|
style={{ borderRadius: '12px', border: '1px solid #f0f0f0' }}
|
|
|
|
|
|
>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '16px' }}>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>设备ID:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.deviceId || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>设备名称:</label>
|
|
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>{selectedDevice.name || '-'}</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>设备类型:</label>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
<span style={{ marginLeft: 8 }}>
|
|
|
|
|
|
{selectedDevice.type ? (
|
|
|
|
|
|
<Space>
|
|
|
|
|
|
{getDeviceTypeIcon(selectedDevice.type)}
|
2026-02-11 10:21:32 +08:00
|
|
|
|
<span>{getTypeLabel(selectedDevice.type)}</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</Space>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
) : (
|
|
|
|
|
|
'-'
|
|
|
|
|
|
)}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>型号:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.model || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>序列号:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.serialNumber || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>IP地址:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.ipAddress || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>所在机房:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.Rack?.Room?.name || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>所在机柜:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.Rack?.name || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>位置:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.position || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>高度(U):</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.height || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>功率(W):</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
|
|
|
|
|
{selectedDevice.power || '-'}
|
|
|
|
|
|
</span>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>状态:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginLeft: 8,
|
|
|
|
|
|
color: selectedDevice.status
|
2026-02-11 10:21:32 +08:00
|
|
|
|
? getStatusConfig(selectedDevice.status).color
|
2026-02-10 11:04:01 +08:00
|
|
|
|
: '#666',
|
|
|
|
|
|
fontWeight: '600',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{selectedDevice.status
|
2026-02-11 10:21:32 +08:00
|
|
|
|
? getStatusConfig(selectedDevice.status).text || selectedDevice.status
|
2026-02-10 11:04:01 +08:00
|
|
|
|
: '-'}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>购买日期:</label>
|
|
|
|
|
|
<span style={{ marginLeft: 8, color: '#333' }}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
{selectedDevice.purchaseDate
|
|
|
|
|
|
? new Date(selectedDevice.purchaseDate).toLocaleDateString('zh-CN')
|
|
|
|
|
|
: '-'}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>保修到期:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<span
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginLeft: 8,
|
|
|
|
|
|
color:
|
|
|
|
|
|
selectedDevice.warrantyExpiry &&
|
|
|
|
|
|
new Date(selectedDevice.warrantyExpiry) < new Date()
|
|
|
|
|
|
? '#d93025'
|
|
|
|
|
|
: '#333',
|
|
|
|
|
|
fontWeight:
|
|
|
|
|
|
selectedDevice.warrantyExpiry &&
|
|
|
|
|
|
new Date(selectedDevice.warrantyExpiry) < new Date()
|
|
|
|
|
|
? '600'
|
|
|
|
|
|
: 'normal',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{selectedDevice.warrantyExpiry
|
|
|
|
|
|
? new Date(selectedDevice.warrantyExpiry).toLocaleDateString('zh-CN')
|
|
|
|
|
|
: '-'}
|
2025-12-19 15:05:31 +08:00
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{selectedDevice.description && (
|
2025-12-29 11:15:55 +08:00
|
|
|
|
<div style={{ marginTop: '16px' }}>
|
|
|
|
|
|
<label style={{ fontWeight: '500', color: '#666' }}>描述:</label>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
marginTop: '8px',
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
backgroundColor: '#fafafa',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
color: '#333',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-19 15:05:31 +08:00
|
|
|
|
{selectedDevice.description}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Modal>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
|
|
|
|
|
<ReloadOutlined style={{ color: '#52c41a' }} />
|
|
|
|
|
|
批量状态变更
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
open={batchStatusModalVisible}
|
|
|
|
|
|
onCancel={() => setBatchStatusModalVisible(false)}
|
|
|
|
|
|
footer={[
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="cancel"
|
|
|
|
|
|
onClick={() => setBatchStatusModalVisible(false)}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
取消
|
|
|
|
|
|
</Button>,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="submit"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
loading={batchStatusLoading}
|
|
|
|
|
|
onClick={handleBatchStatusChange}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
确定
|
2026-02-10 11:04:01 +08:00
|
|
|
|
</Button>,
|
2025-12-29 16:10:42 +08:00
|
|
|
|
]}
|
|
|
|
|
|
destroyOnHidden
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2025-12-29 16:10:42 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Form form={batchStatusForm} layout="vertical">
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="status"
|
|
|
|
|
|
label="选择新状态"
|
|
|
|
|
|
rules={[{ required: true, message: '请选择设备状态' }]}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Select placeholder="请选择设备状态" style={{ width: '100%' }}>
|
|
|
|
|
|
<Option value="running">运行中</Option>
|
|
|
|
|
|
<Option value="maintenance">维护中</Option>
|
|
|
|
|
|
<Option value="offline">离线</Option>
|
|
|
|
|
|
<Option value="fault">故障</Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
<div style={{ color: '#666', fontSize: '13px' }}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
已选择{' '}
|
|
|
|
|
|
<span style={{ color: '#1890ff', fontWeight: 600 }}>{selectedDevices.length}</span>{' '}
|
|
|
|
|
|
个设备
|
2025-12-29 16:10:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title={
|
|
|
|
|
|
<div style={modalHeaderStyle}>
|
|
|
|
|
|
<ExportOutlined style={{ color: '#fa8c16' }} />
|
|
|
|
|
|
导出设备数据
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
open={exportModalVisible}
|
|
|
|
|
|
onCancel={() => setExportModalVisible(false)}
|
|
|
|
|
|
footer={[
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="cancel"
|
|
|
|
|
|
onClick={() => setExportModalVisible(false)}
|
|
|
|
|
|
style={secondaryActionStyle}
|
|
|
|
|
|
>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
取消
|
|
|
|
|
|
</Button>,
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
key="submit"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
loading={exportLoading}
|
|
|
|
|
|
onClick={handleEnhancedExport}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '40px',
|
|
|
|
|
|
borderRadius: designTokens.borderRadius.small,
|
|
|
|
|
|
background: designTokens.colors.primary.gradient,
|
|
|
|
|
|
border: 'none',
|
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
|
boxShadow: designTokens.shadows.small,
|
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
|
display: 'inline-flex',
|
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
2025-12-29 16:10:42 +08:00
|
|
|
|
导出
|
2026-02-10 11:04:01 +08:00
|
|
|
|
</Button>,
|
2025-12-29 16:10:42 +08:00
|
|
|
|
]}
|
|
|
|
|
|
destroyOnHidden
|
2026-02-10 11:04:01 +08:00
|
|
|
|
styles={{
|
|
|
|
|
|
header: { borderBottom: '1px solid #f0f0f0', padding: '16px 24px' },
|
|
|
|
|
|
body: { padding: '24px' },
|
|
|
|
|
|
}}
|
2025-12-29 16:10:42 +08:00
|
|
|
|
width={600}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Form layout="vertical">
|
|
|
|
|
|
<Form.Item label="导出格式">
|
|
|
|
|
|
<Select value={exportFormat} onChange={setExportFormat} style={{ width: '100%' }}>
|
|
|
|
|
|
<Option value="csv">CSV 格式</Option>
|
|
|
|
|
|
<Option value="json">JSON 格式</Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
<Form.Item label="导出范围">
|
|
|
|
|
|
<Select value={exportScope} onChange={setExportScope} style={{ width: '100%' }}>
|
|
|
|
|
|
<Option value="selected">选择的行 ({selectedDevices.length} 个)</Option>
|
|
|
|
|
|
<Option value="currentPage">当前页 ({currentPageDevices.length} 个)</Option>
|
|
|
|
|
|
<Option value="all">全部设备 ({allDevices.length} 个)</Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
<Form.Item label="选择导出字段">
|
2026-02-10 11:04:01 +08:00
|
|
|
|
<div
|
|
|
|
|
|
style={{
|
|
|
|
|
|
maxHeight: '300px',
|
|
|
|
|
|
overflow: 'auto',
|
|
|
|
|
|
border: '1px solid #f0f0f0',
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
|
padding: '12px',
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{deviceFields
|
|
|
|
|
|
.filter(f => f.visible && f.fieldName !== 'rackId')
|
|
|
|
|
|
.map(field => (
|
|
|
|
|
|
<div key={field.fieldName} style={{ marginBottom: '8px' }}>
|
|
|
|
|
|
<Checkbox
|
|
|
|
|
|
checked={exportFields.includes(field.fieldName)}
|
|
|
|
|
|
onChange={e => {
|
|
|
|
|
|
if (e.target.checked) {
|
|
|
|
|
|
setExportFields([...exportFields, field.fieldName]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setExportFields(exportFields.filter(f => f !== field.fieldName));
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{field.displayName}
|
|
|
|
|
|
</Checkbox>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
2025-12-29 16:10:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
<div style={{ color: '#666', fontSize: '13px' }}>
|
2026-02-10 11:04:01 +08:00
|
|
|
|
已选择{' '}
|
|
|
|
|
|
<span style={{ color: '#1890ff', fontWeight: 600 }}>{selectedDevices.length}</span>{' '}
|
|
|
|
|
|
个设备, 将导出{' '}
|
|
|
|
|
|
<span style={{ color: '#52c41a', fontWeight: 600 }}>{exportFields.length}</span> 个字段
|
2025-12-29 16:10:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
</Modal>
|
2025-12-18 10:45:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-10 11:04:01 +08:00
|
|
|
|
export default DeviceManagement;
|