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
| // 巡检上传
| 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
| })
| }
|
|