feat(production-master-data): 新增产线、工艺流程类别、产品管理模块
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

1. 新增工厂区域全量查询API
2. 新增产线管理API、页面、路由与多语言配置
3. 新增工艺流程类别管理API、页面、路由与多语言配置
4. 新增产品管理API、页面、路由与多语言配置
5. 修复MenuTree组件slot-scope语法兼容问题
6. 追加对应功能的测试文档与版本记录
This commit is contained in:
sheng
2026-06-01 17:35:20 +08:00
parent c9498c444b
commit 99b9bc8a5b
14 changed files with 3253 additions and 859 deletions

View File

@@ -19,6 +19,24 @@ export default {
name: `${pre}factory_model-factory_area`,
meta: { ...meta, cache: true, title: '工厂区域' },
component: _import('production-master-data/factory-model/factory-area')
},
{
path: 'factory_model/factory_line',
name: `${pre}factory_model-factory_line`,
meta: { ...meta, cache: true, title: '产线设置' },
component: _import('production-master-data/factory-model/production-line')
},
{
path: 'technology_model/technology_flow_category',
name: `${pre}technology_model-technology_flow_category`,
meta: { ...meta, cache: true, title: '工艺流程类别' },
component: _import('production-master-data/process-model/process-category')
},
{
path: 'product_model/battery_model',
name: `${pre}product_management-product_list`,
meta: { ...meta, cache: true, title: '产品列表' },
component: _import('production-master-data/product-management/product-list')
}
])('production_configuration-')
}