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
38
39
40
41
42
43
| /**
| * 系统应用
| *
| * @author yhh
| */
| import { axios } from '@/utils/request'
|
| /**
| * 获取库位数据
| *
| * @author yhh
| */
| export function GetPalceNumbers () {
| return axios({
| url: '/locationview/GetPalceDetail',
| method: 'get'
| })
| }
|
| /**
| * 获取出入库统计数据
| *
| * @author yhh
| */
| export function GeInOutTaskNumber (params) {
| return axios({
| url: '/locationview/task-detail',
| method: 'get',
| params:params
| })
| }
|
| /**
| * 获取出入库总数
| *
| * @author yhh
| */
| export function GeInOutTotalNumber () {
| return axios({
| url: '/locationview/GetTaskCount',
| method: 'get'
| })
| }
|
|