feat(purchase): 物料搜索分页+价格半联动+图片必填校验

This commit is contained in:
DXC
2026-05-12 17:48:29 +08:00
parent 3c9d7a999d
commit 1a76c4853e
4 changed files with 152 additions and 39 deletions

View File

@ -89,3 +89,12 @@ export function autoFillPurchase(keyword: string) {
params: { keyword }
})
}
// 物料基础信息搜索(分页),用于采购申请弹窗
export function searchMaterialPurchase(keyword: string, page: number = 1) {
return request({
url: '/purchase/search-material',
method: 'get',
params: { keyword, page }
})
}