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
| // 巡检上传
| 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 stockout(query) {
| return request({
| url: '/stockmanagement/stockout',
| method: 'post',
| data: query
| })
| }
|
|