原材料出库模糊查询

This commit is contained in:
2024-04-28 16:12:49 +08:00
parent 87c909b640
commit 13fe305161
2 changed files with 22 additions and 5 deletions

View File

@@ -10,10 +10,11 @@ export const regionSearch = () => request({
})
// 根据区域查询点位
export const pointSearch = (rcode) => request({
export const pointSearch = (rcode, pcode) => request({
url:'api/pda/point',
data: {
region_code: rcode
region_code: rcode,
point_code: pcode
}
})