周宾
昨天 81dbb5d80f59a434702ea9264c66a93411430325
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// 巡检上传
import request from '@/utils/request'
 
// 采购入库列表
export function listPage(query) {
    return request({
        url: '/stockin/listPage',
        method: 'get',
        params: query
    })
}
//自定义入库列表
export function listPageByCustom(query) {
    return request({
        url: '/stockin/listPageByCustom',
        method: 'get',
        params: query
    })
}
//新增自定义入库
// 获取用户信息
export function addCustom(query) {
  return request({
    url: '/stockin/addCustom',
    method: 'post',
    data: query
  })
}
 
// 删除自定义入库
 export function deleteCustom(query) {
  return request({
    url: '/stockin/deleteCustom',
    method: 'delete',
    data: query
  })
}