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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
| export const columns = [
| {
| type: 'seq',
| width: 60,
| title: '序号',
| },
| {
| field: 'taskNo',
| title: '任务号',
| },
| {
| field: 'taskTypeDesc',
| title: '任务类型',
| },
| {
| field: 'sonTaskTypeDesc',
| title: '子任务类型',
| },
| {
| field: 'taskStatusDesc',
| title: '任务状态',
| },
| {
| field: 'containerNo',
| title: '托盘编号',
| },
| {
| field: 'sourcePlace',
| title: '起始库位',
| },
| {
| field: 'toPlace',
| title: '目标库位',
| },
| {
| field: 'plcTaskId',
| title: 'Plc任务号',
| },
| {
| field: 'aisle',
| title: '巷道',
| },
| // {
| // field: 'dodeviceId',
| // title: '堆垛机ID',
| // },
| {
| field: 'dodevicetypeDesc',
| title: '设备类型',
| },
| {
| field: 'taskDodeviceStatusDesc',
| title: '设备状态',
| },
| {
| field: 'isRead',
| title: 'WCS可读取',
| },
| {
| field: 'sourceOrderNo',
| title: '来源单号',
| },
| // {
| // field: 'isNextTask',
| // title: '下个任务是否生成成功',
| // },
| {
| field: 'taskLevel',
| title: '任务等级',
| },
| {
| field: 'mutableParam1',
| title: '型号',
| },
| // {
| // field: 'mutableParam2',
| // title: '可变变量2',
| // },
| // {
| // field: 'mutableParam3',
| // title: '可变变量3',
| // },
| // {
| // field: 'sort',
| // title: '排序',
| // },
| {
| field: 'creationTime',
| title: '创建时间',
| width: 180,
| },
| ]
|
|