feat(物料管理): 优化物料分类选择功能并简化物料类型显示

- 在物料分类表格中添加row-key属性以支持树形结构
- 新增获取物料分类名称下拉列表的API接口
- 将物料分类名称输入框改为下拉选择框
- 简化物料类型显示,使用字典标签替代长文本
- 预定义物料类型选项,避免硬编码
This commit is contained in:
Tom
2025-12-26 14:59:37 +08:00
parent fea9bb55ec
commit 05c185eec5
3 changed files with 49 additions and 6 deletions

View File

@@ -55,3 +55,14 @@ export function delMmMaterial(pid) {
method: 'POST'
})
}
/**
* 获取物料分类名称下拉列表
*/
export function getMmMaterialCategoryName(query) {
return request({
url: 'mes/productionMaterial/MmMaterialCategoryName/list',
method: 'get',
params: query
})
}