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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
| import request from '@/utils/request'
|
| // 大岛车间综合看板,生产车间查找产线接口
| export function ShopSearchLine(data) {
| return request({
| url: 'KanBanManagerent/ShopSearchLine',
| method: 'get',
| params: data
| })
| }
|
| // 大岛车间综合看板,左上产线加工任务接口
| export function LineSearchTopLeftData(data) {
| return request({
| url: 'KanBanManagerent/LineSearchTopLeftData',
| method: 'post',
| data
| })
| }
|
| // 大岛车间综合看板,左下列表接口
| export function LineSearchBottomLeftData() {
| return request({
| url: 'KanBanManagerent/LineSearchBottomLeftData',
| method: 'get'
| })
| }
|
| // 大岛车间综合看板,右上top排行接口
| export function LineSearchTopRightData() {
| return request({
| url: 'KanBanManagerent/LineSearchTopRightData',
| method: 'get'
| })
| }
|
| // 大岛车间综合看板,右下top排行接口
| export function LineSearchBottomRightData() {
| return request({
| url: 'KanBanManagerent/LineSearchBottomRightData',
| method: 'get'
| })
| }
|
| // 采购订单跟踪管理看板,左上本月采购订单数、本月采购进货单数、本月采购入库单数
| export function PurchaseLeftTop() {
| return request({
| url: 'KanBanManagerent/PurchaseLeftTop',
| method: 'get'
| })
| }
|
| // 采购订单跟踪管理看板,左下采购订单跟踪列表
| export function PurchaseLeftBottom() {
| return request({
| url: 'KanBanManagerent/PurchaseLeftBottom',
| method: 'get'
| })
| }
|
| // 采购订单跟踪管理看板,右侧Top
| export function PurchaseRight() {
| return request({
| url: 'KanBanManagerent/PurchaseRight',
| method: 'get'
| })
| }
|
|