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
93
94
95
96
97
98
| import { _t } from '../../app'
|
| export const processColumns = [
| {
| title: _t('工序序号'),
| field: 'oper',
| width: 150,
| },
| {
| title: _t('工艺路线版本'),
| field: 'floW_SEQ',
| width: 150,
| },
| {
| title: _t('工艺路线'),
| field: 'flow',
| width: 150,
| },
| {
| title: _t('工序标准文本码'),
| field: 'oper',
| width: 150,
| },
| {
| title: _t('工序名称'),
| field: 'opeR_NAME',
| width: 150,
| },
| {
| title: _t('前一工序文本码'),
| field: 'prE_OPER',
| width: 150,
| },
| {
| title: _t('后一工序文本码'),
| field: 'nexT_OPER',
| width: 150,
| },
| {
| title: _t('计划开始时间'),
| field: 'plaN_STAR_TIME',
| width: 150,
| },
| {
| title: _t('计划结束时间'),
| field: 'plaN_END_TIME',
| width: 150,
| },
| {
| title: _t('对应主工艺路线'),
| field: 'maiN_FLOW',
| width: 150,
| },
| ]
| export const bomColumns = [
| {
| title: _t('BOM编号'),
| field: 'boM_SET_ID',
| },
| {
| title: _t('物料描述'),
| field: 'maT_DESC',
| },
| {
| title: _t('数量'),
| field: 'maT_QTY',
| },
| {
| title: _t('重要追溯件'),
| field: 'seriaL_INPUT_FLAG',
| },
| {
| title: _t('所属工序'),
| field: 'oper',
| },
| ]
| export const lotColumns = [
| {
| title: _t('LOT号'),
| field: 'loT_ID',
| },
| {
| title: _t('LOT描述'),
| field: 'loT_DESC',
| },
| {
| title: _t('LOT状态'),
| field: 'loT_STATUS',
| },
| {
| title: _t('LOT类型'),
| field: 'loT_TYPE',
| },
| {
| title: _t('序列号'),
| field: 'subloT_ID',
| },
| ]
|
|