feat(wms): 新增APS排产相关页面及产需单跳转排产功能

1. 新增/aps/requirement和/aps/schedule路由页面
2. 实现产需单列表跳转排产单功能
3. 为排产页面添加参数接收与自动查询逻辑
4. 新增弹窗组件间传递APS页面参数的能力
5. 优化产需单列表UI布局与绑定状态展示
This commit is contained in:
王文昊
2026-07-09 17:15:24 +08:00
parent 2150fa1fda
commit e7d96e2c3d
4 changed files with 213 additions and 16 deletions

View File

@@ -183,6 +183,33 @@ export const dynamicRoutes = [
}
]
},
// APS 排产独立页面(用于产需单跳转排产单)
{
path: '/aps/requirement',
component: Layout,
hidden: true,
children: [
{
path: '',
component: () => import('@/views/wms/post/aps/requirement'),
name: 'ApsRequirement',
meta: { title: '产需单' }
}
]
},
{
path: '/aps/schedule',
component: Layout,
hidden: true,
children: [
{
path: '',
component: () => import('@/views/wms/post/aps/schedule'),
name: 'ApsSchedule',
meta: { title: '排产单' }
}
]
},
{
path: '/system/dict-data',
component: Layout,