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. 补充对应国际化多语言配置
5. 新增生产主数据模块路由配置
6. 新增计量单位功能测试流程文档
This commit is contained in:
sheng
2026-06-02 11:25:26 +08:00
parent 99b9bc8a5b
commit a0192d9567
17 changed files with 3460 additions and 1 deletions

View File

@@ -32,11 +32,35 @@ export default {
meta: { ...meta, cache: true, title: '工艺流程类别' },
component: _import('production-master-data/process-model/process-category')
},
{
path: 'technology_model/technology_flow_workingsubclass',
name: `${pre}technology_model-technology_flow_workingsubclass`,
meta: { ...meta, cache: true, title: '工序单元' },
component: _import('production-master-data/process-model/process-step')
},
{
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')
},
{
path: 'matetial_model/matetial_category',
name: `${pre}material_model-material_category`,
meta: { ...meta, cache: true, title: '物料类别列表' },
component: _import('production-master-data/material-model/material-category')
},
{
path: 'matetial_model/matetial_management',
name: `${pre}material_model-material_master`,
meta: { ...meta, cache: true, title: '物料信息管理' },
component: _import('production-master-data/material-model/material-master')
},
{
path: 'matetial_model/unit',
name: `${pre}material_model-material_unit`,
meta: { ...meta, cache: true, title: '计量单位' },
component: _import('production-master-data/material-model/material-unit')
}
])('production_configuration-')
}