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

- 添加工艺流程、流程卡工序的全套CRUD及复制接口
- 新增工艺流程列表页与流程卡详情页的路由和页面组件
- 补充产品、工序分类、工序子类的全量查询接口
- 优化弹窗表单组件,支持字段禁用与focus/blur/change事件回调
- 修复工序单元页面的国际化调用和权限配置问题
- 补充中英文多语言国际化文案
- 新增该模块的功能测试文档
This commit is contained in:
sheng
2026-06-04 17:07:15 +08:00
parent b6c362d906
commit 3f546564cc
15 changed files with 2071 additions and 36 deletions

View File

@@ -18,6 +18,18 @@ export function getProcessCategoryList (data) {
})
}
export function getProcessCategoryAll (data) {
return request({
url: BASE + 'all',
method: 'get',
params: {
method: 'production_configuration_technology_model_technology_flow_category_all',
platform: 'background',
...data
}
})
}
export function createProcessCategory (data) {
return request({
url: BASE + 'create',