refactor: 多页面UI优化与功能完善

1. 优化合同页面默认备注内容
2. 修复分卷编辑接口参数缺失问题
3. 新增分卷、合卷、加工菜单路由
4. 重构导航栏默认显示逻辑
5. 升级重定向菜单页面样式与布局
6. 优化告警页面查询与展示字段
7. 重构全局搜索组件为弹窗模式
8. 优化报表页面代码格式与接口参数
This commit is contained in:
2026-06-12 11:25:15 +08:00
parent d3c6790603
commit 98116fa042
8 changed files with 306 additions and 150 deletions

View File

@@ -130,6 +130,24 @@ export const constantRoutes = [
component: () => import('@/views/wms/coil/materialWarning/index'),
name: 'MaterialWarning',
meta: { title: '告警信息', icon: 'warning' }
},
{
path: 'split',
component: () => import('@/views/wms/coil/split'),
name: 'Split',
meta: { title: '分卷', icon: 'checkbox' }
},
{
path: 'merge',
component: () => import('@/views/wms/coil/merge'),
name: 'Merge',
meta: { title: '合卷', icon: 'checkbox' }
},
{
path: 'typing',
component: () => import('@/views/wms/coil/typing'),
name: 'Typing',
meta: { title: '加工', icon: 'checkbox' }
}
],
},