feat: 添加空闲设备状态支持并优化耗材导入功能
refactor(设备管理): 重构状态筛选和高级搜索界面 perf(机柜管理): 优化U位计算方式为基于设备高度 fix(耗材管理): 修复导入时库存计算不准确的问题 style(耗材统计): 调整表格样式和实时刷新功能 docs: 更新设备状态映射包含空闲状态
This commit is contained in:
@@ -125,6 +125,7 @@ export const DEFAULT_DEVICE_FIELDS = [
|
||||
{ value: 'maintenance', label: '维护中' },
|
||||
{ value: 'offline', label: '离线' },
|
||||
{ value: 'fault', label: '故障' },
|
||||
{ value: 'idle', label: '空闲' },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -240,6 +241,7 @@ export const DEVICE_STATUS_OPTIONS = [
|
||||
{ value: 'maintenance', label: '维护中' },
|
||||
{ value: 'offline', label: '离线' },
|
||||
{ value: 'fault', label: '故障' },
|
||||
{ value: 'idle', label: '空闲' },
|
||||
];
|
||||
|
||||
// 表格列宽配置
|
||||
@@ -283,6 +285,7 @@ export const STATUS_MAP = {
|
||||
maintenance: { text: '维护中', color: 'orange' },
|
||||
offline: { text: '离线', color: 'gray' },
|
||||
fault: { text: '故障', color: 'red' },
|
||||
idle: { text: '空闲', color: 'cyan' },
|
||||
};
|
||||
|
||||
// 设备类型映射
|
||||
|
||||
Reference in New Issue
Block a user