cy
2023-12-02 b938f236181f5636dcc4b6089c1270d0f138ad23
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,
  });
}