cy
2023-12-02 8053bbe2796ca90b142a3030d921a8b74727a0dd
1
2
3
4
5
6
7
8
9
10
11
import request from '@/utils/request';
 
// 物品报废
// 新增
export function scrappedAdd(data) {
  return request({
    url: '/pc/l/wh/form/scrapped/deptAdd',
    method: 'post',
    data,
  });
}