22
schangxiang@126.com
2024-12-23 b6b3a245ee5159573a216affd79f449f3baa7d28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {request} from '../../utils/request.js'
 
//获取当前容器下的所有物料
export function getContainerMateral(containerCode){ //查询物料
    return request({
        url: `/Scrap/Material?containerCode=${containerCode}`,
        method: 'get',
     })
}
 
export function scrapMaterial(data){ //确认提交
    return request({
        url: `/ScrapMaterial/add`,
        method: 'post',
        data
     })
}