refactor: 统一代码风格并迁移至 ESLint 新配置
style(backend): 格式化模型文件代码 style(frontend): 调整组件代码格式 chore: 删除旧 ESLint 配置并添加新配置 refactor(backend): 重构模型定义语法 style: 统一箭头函数和对象属性简写
This commit is contained in:
@@ -14,7 +14,10 @@ router.get('/', async (req, res) => {
|
||||
|
||||
const categories = await FaultCategory.findAll({
|
||||
where,
|
||||
order: [['priority', 'ASC'], ['name', 'ASC']]
|
||||
order: [
|
||||
['priority', 'ASC'],
|
||||
['name', 'ASC'],
|
||||
],
|
||||
});
|
||||
|
||||
res.json(categories);
|
||||
@@ -31,8 +34,12 @@ router.get('/stats', async (req, res) => {
|
||||
const where = {};
|
||||
if (startDate || endDate) {
|
||||
where.createdAt = {};
|
||||
if (startDate) where.createdAt[Op.gte] = new Date(startDate);
|
||||
if (endDate) where.createdAt[Op.lte] = new Date(endDate + ' 23:59:59');
|
||||
if (startDate) {
|
||||
where.createdAt[Op.gte] = new Date(startDate);
|
||||
}
|
||||
if (endDate) {
|
||||
where.createdAt[Op.lte] = new Date(endDate + ' 23:59:59');
|
||||
}
|
||||
}
|
||||
|
||||
const stats = await Ticket.findAll({
|
||||
@@ -40,16 +47,32 @@ router.get('/stats', async (req, res) => {
|
||||
attributes: [
|
||||
'faultCategory',
|
||||
[require('sequelize').fn('COUNT', '*'), 'totalCount'],
|
||||
[require('sequelize').sum(require('sequelize').case({
|
||||
when: { status: 'completed' },
|
||||
then: 1
|
||||
}, 0)), 'completedCount'],
|
||||
[require('sequelize').sum(require('sequelize').case({
|
||||
when: { status: { [Op.ne]: 'completed' } },
|
||||
then: 1
|
||||
}, 0)), 'pendingCount']
|
||||
[
|
||||
require('sequelize').sum(
|
||||
require('sequelize').case(
|
||||
{
|
||||
when: { status: 'completed' },
|
||||
then: 1,
|
||||
},
|
||||
0
|
||||
)
|
||||
),
|
||||
'completedCount',
|
||||
],
|
||||
[
|
||||
require('sequelize').sum(
|
||||
require('sequelize').case(
|
||||
{
|
||||
when: { status: { [Op.ne]: 'completed' } },
|
||||
then: 1,
|
||||
},
|
||||
0
|
||||
)
|
||||
),
|
||||
'pendingCount',
|
||||
],
|
||||
],
|
||||
group: ['faultCategory']
|
||||
group: ['faultCategory'],
|
||||
});
|
||||
|
||||
res.json(stats);
|
||||
@@ -72,15 +95,8 @@ router.get('/:categoryId', async (req, res) => {
|
||||
|
||||
router.post('/', async (req, res) => {
|
||||
try {
|
||||
const {
|
||||
name,
|
||||
description,
|
||||
priority,
|
||||
defaultPriority,
|
||||
expectedDuration,
|
||||
solutions,
|
||||
isActive
|
||||
} = req.body;
|
||||
const { name, description, priority, defaultPriority, expectedDuration, solutions, isActive } =
|
||||
req.body;
|
||||
|
||||
const existing = await FaultCategory.findOne({ where: { name } });
|
||||
if (existing) {
|
||||
@@ -98,7 +114,7 @@ router.post('/', async (req, res) => {
|
||||
expectedDuration: expectedDuration ? parseInt(expectedDuration) : null,
|
||||
solutions: solutions || [],
|
||||
isSystem: false,
|
||||
isActive: isActive !== false
|
||||
isActive: isActive !== false,
|
||||
});
|
||||
|
||||
res.status(201).json(category);
|
||||
@@ -110,16 +126,66 @@ router.post('/', async (req, res) => {
|
||||
router.post('/init', async (req, res) => {
|
||||
try {
|
||||
const defaultCategories = [
|
||||
{ name: '系统故障', description: '操作系统、应用程序等系统软件的故障问题', priority: 1, defaultPriority: 'high' },
|
||||
{ name: '硬件故障', description: '物理设备、服务器、存储等硬件设备的故障问题', priority: 2, defaultPriority: 'high' },
|
||||
{ name: '网络故障', description: '网络连接、交换机、路由器等网络相关故障', priority: 3, defaultPriority: 'high' },
|
||||
{ name: '软件故障', description: '应用程序错误、软件兼容性等问题', priority: 4, defaultPriority: 'medium' },
|
||||
{ name: '安全事件', description: '安全漏洞、入侵检测、权限异常等安全问题', priority: 5, defaultPriority: 'urgent' },
|
||||
{ name: '性能问题', description: '系统响应慢、资源利用率高等性能问题', priority: 6, defaultPriority: 'medium' },
|
||||
{ name: '配置变更', description: '系统配置、软件配置等变更需求', priority: 7, defaultPriority: 'low' },
|
||||
{ name: '例行维护', description: '定期维护、巡检、更新等计划性工作', priority: 8, defaultPriority: 'low' },
|
||||
{ name: '数据问题', description: '数据错误、数据丢失、数据同步等数据相关问题', priority: 9, defaultPriority: 'high' },
|
||||
{ name: '其他问题', description: '无法归类的其他问题', priority: 99, defaultPriority: 'medium' }
|
||||
{
|
||||
name: '系统故障',
|
||||
description: '操作系统、应用程序等系统软件的故障问题',
|
||||
priority: 1,
|
||||
defaultPriority: 'high',
|
||||
},
|
||||
{
|
||||
name: '硬件故障',
|
||||
description: '物理设备、服务器、存储等硬件设备的故障问题',
|
||||
priority: 2,
|
||||
defaultPriority: 'high',
|
||||
},
|
||||
{
|
||||
name: '网络故障',
|
||||
description: '网络连接、交换机、路由器等网络相关故障',
|
||||
priority: 3,
|
||||
defaultPriority: 'high',
|
||||
},
|
||||
{
|
||||
name: '软件故障',
|
||||
description: '应用程序错误、软件兼容性等问题',
|
||||
priority: 4,
|
||||
defaultPriority: 'medium',
|
||||
},
|
||||
{
|
||||
name: '安全事件',
|
||||
description: '安全漏洞、入侵检测、权限异常等安全问题',
|
||||
priority: 5,
|
||||
defaultPriority: 'urgent',
|
||||
},
|
||||
{
|
||||
name: '性能问题',
|
||||
description: '系统响应慢、资源利用率高等性能问题',
|
||||
priority: 6,
|
||||
defaultPriority: 'medium',
|
||||
},
|
||||
{
|
||||
name: '配置变更',
|
||||
description: '系统配置、软件配置等变更需求',
|
||||
priority: 7,
|
||||
defaultPriority: 'low',
|
||||
},
|
||||
{
|
||||
name: '例行维护',
|
||||
description: '定期维护、巡检、更新等计划性工作',
|
||||
priority: 8,
|
||||
defaultPriority: 'low',
|
||||
},
|
||||
{
|
||||
name: '数据问题',
|
||||
description: '数据错误、数据丢失、数据同步等数据相关问题',
|
||||
priority: 9,
|
||||
defaultPriority: 'high',
|
||||
},
|
||||
{
|
||||
name: '其他问题',
|
||||
description: '无法归类的其他问题',
|
||||
priority: 99,
|
||||
defaultPriority: 'medium',
|
||||
},
|
||||
];
|
||||
|
||||
for (const cat of defaultCategories) {
|
||||
@@ -132,7 +198,7 @@ router.post('/init', async (req, res) => {
|
||||
expectedDuration: 120,
|
||||
solutions: [],
|
||||
isSystem: true,
|
||||
isActive: true
|
||||
isActive: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user