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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
| /*
| * @Description: 工单相关
| * @Author: Ben Lin
| * @version:
| * @Date: 2024-06-19 20:34:27
| * @LastEditors: Ben Lin
| * @LastEditTime: 2024-10-23 20:48:14
| */
|
| import { Ref, h, ref, render, unref } from 'vue';
| import { GetEnum, SaveEntity, convertToTree, getEntity } from '/@/api/tigerapi/system';
| import { useLocale } from '/@/locales/useLocale';
| import { useI18n } from '/@/hooks/web/useI18n';
| import { useMessage } from '/@/hooks/web/useMessage';
| import { useModal } from '/@/components/Modal';
| import { ActionItem, BasicColumn, FormSchema } from '/@/components/Table';
| import { useUserStore } from '/@/store/modules/user';
| import { buildUUID } from '/@/utils/uuid';
| import { SaveWoBatchInput } from '/@/api/tigerapi/model/mesModel';
| import { CustModalParams, FunctionType } from '/@/api/tigerapi/model/systemModel';
| import { SaveMesBatchWo } from '/@/api/tigerapi/mes/wo';
| import { useForm } from '/@/components/Form/index';
| import { cloneDeep } from 'lodash-es';
| import { useProdRouteStore } from '/@/store/modules/prodRoute';
| import { Tag, Tooltip } from 'ant-design-vue';
|
| const { t } = useI18n();
| const { createErrorModal } = useMessage();
| const { getLocale } = useLocale();
| function _default() {
| const ActionColumn: BasicColumn = {
| width: 180,
| title: '操作',
| dataIndex: 'action',
| slots: { customRender: 'action' },
| fixed: 'right',
| };
| /**
| * @description: 工单管理的一些自定义方法
| * @return {*}
| */
| const methods = {
| /**
| * @description: 获取新增按钮的行为
| * @return {*}
| */
| CreateAction: (type: string, fnName: string) => {
| let action = {} as any;
| switch (fnName) {
| case 'ImportExcel':
| action = {
| action: 'importModal', //drawer(打开左侧抽屉框) | go(跳转到新的页面) | modal(打开模态窗口) | importModal(打开导入模态窗口) | ToPrint(打印功能)
| params: {
| tmpHeader: ['工单号', '计划日期', '计划数量'] /* 下载模板的标题字段 */,
| filename: '工单计划模板.xlsx' /* 下载模板的文件名 */,
| entityName: 'BIZ_MES_WO_BATCH' /* 导入表的表名 */,
| checkJson: ['ORDER_NO', 'PLAN_DATE', 'PLAN_QTY'] /* 导入表需要检查的字段列表 */,
| where: ['ORDER_NO'] /* 导入表需要查询的字段列表 */,
| typeFullName:
| 'Tiger.IBusiness.MES.IImportWoPlan,Tiger.IBusiness.MES' /* 导入的方法全名,通用导入用这个:Tiger.IBusiness.ICommonImportExcel,Tiger.IBusiness */,
| baseColumns: [
| /* 导入时界面显示数据的字段 */
| {
| title: '工单号',
| dataIndex: 'ORDER_NO',
| ifShow: true,
| width: 180,
| },
| // {
| // title: '工单批次号',
| // dataIndex: 'BATCH_NO',
| // ifShow: true,
| // width: 180,
| // // customRender: ({ record }) => {
| // // record.BATCH_NO = record.ORDER_NO+'-01'
| // // return record.BATCH_NO
| // // },
| // },
| {
| title: '计划日期',
| dataIndex: 'PLAN_DATE',
| ifShow: true,
| width: 180,
| },
| {
| title: '计划数量',
| dataIndex: 'PLAN_QTY',
| ifShow: true,
| width: 100,
| },
| {
| title: '处理方式',
| dataIndex: 'VALIDATION_TYPE',
| ifShow: true,
| width: 100,
| customRender: ({ record }) => {
| const status = record.VALIDATION_TYPE;
| var text = '';
| var color = 'green';
| if (status == '异常') {
| color = 'red';
| text = status;
| } else if (status == '更新') {
| color = 'orange';
| text = status;
| } else {
| text = status;
| }
| return h(Tooltip, { title: text }, () => h(Tag, { color: color }, () => text));
| },
| },
| {
| title: '处理提示',
| dataIndex: 'VALIDATION_RESULT',
| ifShow: true,
| width: 280,
| customRender: ({ record }) => {
| const status = record.VALIDATION_TYPE;
| var text = record.VALIDATION_RESULT;
| var color = 'green';
| if (status == '异常') {
| color = 'red';
| } else if (status == '更新') {
| color = 'orange';
| }
| return h(Tooltip, { title: text }, () => h(Tag, { color: color }, () => text));
| },
| },
| ],
| },
| };
| break;
| case 'ToPrint':
| action = {
| action: 'ToPrint', //drawer(打开左侧抽屉框) | go(跳转到新的页面) | modal(打开模态窗口) | importModal(打开导入模态窗口) | ToPrint(打印功能)
| };
| break;
| default:
| action = {
| action: 'drawer', //drawer(打开左侧抽屉框) | go(跳转到新的页面) | modal(打开模态窗口) | importModal(打开导入模态窗口) | ToPrint(打印功能)
| };
| break;
| }
| return action;
| },
| /**
| * @description: 操作字段自定义按钮
| * @return {*}
| */
| ActionItem: (params: Recordable<any>, data, ...args): ActionItem[] => {
| data.map((x) => {
| if (x.name == 'goDetail') {
| x.onClick = goDetail.bind(null, args[5], params);
| x.tooltip = '工单批次';
| }
| if (x.name == 'handleConfig') {
| x.onClick = handleConfig.bind(null, args, params);
| x.tooltip = '配置工艺';
| }
| if (x.name == 'handleRelease') {
| x.onClick = handleRelease.bind(null, args, params);
| x.tooltip = '下发';
| }
| if (x.name == 'ToPrint') {
| x.tooltip = '打印流程卡';
| }
| });
| return data;
| },
| GetUseForm: () => {
| return {
| forminfo: useForm({
| labelWidth: 120,
| schemas: woformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| woinfo: useForm({
| labelWidth: 120,
| schemas: woCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| prodinfo: useForm({
| labelWidth: 120,
| schemas: prodCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| tmpinfo: useForm({
| labelWidth: 120,
| schemas: prodCfgformSchema,
| actionColOptions: {
| span: 24,
| },
| showActionButtonGroup: false,
| }),
| };
| },
| /**
| * @description: 自定义方法
| * @param {string} type
| * @param {array} args
| * @return {*}
| */
| CustFunc: (param: CustModalParams) => {
| switch (param.cType) {
| case 'BIZ_MES_WO':
| case 'BIZ_MES_WO_Config':
| return getWoFns[param.FnName](param) as Promise<any>;
| // break;
| default:
| return new Promise((resolve, reject) => {
| try {
| (e) => {};
| resolve(true);
| } catch {
| reject(false);
| } finally {
| // args[0][0]({ confirmLoading: false });
| }
| });
| // break;
| }
| },
| /**
| * @description: 获取多表单插槽列表
| * @return {*}
| */
| GetDtlSlots: (type: string) => {
| let result = [] as any[];
| switch (type) {
| case 'BIZ_MES_WO_Config':
| result = [
| { name: 'woinfo', slots: [], preIcons: {}, title: '工单信息' },
| {
| name: 'prodinfo',
| slots: ['addRot', 'setRot'],
| preIcons: { addRot: 'search|svg', setRot: 'config|svg' },
| title: '产品信息',
| },
| { name: 'rotinfo', slots: ['add'], preIcons: { add: 'search|svg' }, title: '工艺信息' },
| ];
| break;
| case 'BIZ_MES_WO':
| result = [
| {
| name: 'forminfo',
| slots: ['add', 'set'],
| preIcons: { add: 'search|svg', set: 'config|svg' }, //如果是多个表单,增加多个插槽。slots是弹出框按钮的插槽,preIcons是插槽对应的按钮图标
| title: '下发配置',
| },
| ];
| break;
| }
| return result;
| },
| /**
| * @description: 获取模态框应用列表
| * @return {*}
| */
| GetUseModals: () => {
| return {
| useModalData: {
| add: useModal(),
| set: useModal(),
| addRot: useModal(),
| setRot: useModal(),
| },
| };
| },
| /**
| * @description: 获取自定义数据
| * @return {*}
| */
| GetCustData: () => {
| return {
| isCustEl: {
| forminfo: false,
| woinfo: false,
| prodinfo: false,
| rotinfo: true,
| },
| };
| },
| /**
| * @description: 弹出选择框选择成功返回方法
| * @param {*} d
| * @param {*} u
| * @return {*}
| */
| GetSelectSuccess: (d, u) => {
| return {
| ROUTE_CODE: d.values['val'],
| // ID: d.values['id'],
| ROT_ID: d.values['id'],
| };
| },
| /**
| * @description: 打开弹出选择框
| * @param {Fn} openItemModal
| * @param {array} args
| * @return {*}
| */
| OpenSelectItem: (openItemModal: Fn, ...args) => {
| const slotName = args[0];
| const openRvModal = args[1];
| const selectVals = args[2];
| switch (slotName) {
| case 'addRot':
| case 'add':
| openItemModal(true, {
| title: '工艺路线列表',
| schemas: [
| {
| field: 'ROT_CODE',
| component: 'Input',
| label: '工艺路线编码',
| colProps: {
| span: 12,
| },
| },
| ],
| ItemColumns: [
| {
| title: t('工艺路线编码'),
| dataIndex: 'ROT_CODE',
| resizable: true,
| sorter: true,
| width: 200,
| },
| {
| title: t('工艺路线名称'),
| dataIndex: 'ROT_NAME',
| resizable: true,
| sorter: true,
| width: 180,
| },
| ],
| tableName: 'MES_ROUTE',
| rowKey: 'ROT_CODE',
| returnFieldName: ['ROUTE_CODE', 'ROT_ID'], //返回值要赋值的字段名称
| searchInfo: { TABLE_NAME: 'MES_ROUTE' },
| });
| break;
| case 'set':
| openRvModal(true, { rotId: selectVals.value['ROUTE_CODE'], slotName: slotName });
| break;
| case 'setRot':
| break;
| }
| },
| /**
| * @description: 获取标题信息
| * @param {string} type
| * @return {*}
| */
| GetTitle: () => {
| return {
| importTitle: '工单计划导入' /* 打开模态窗口显示的标题 */,
| };
| },
| };
|
| /* 以下是内部方法,不export,供上面的方法调用 */
|
| /**
| * @description: 自定义方法
| * @return {*}
| */
| const getWoFns: Record<string, FunctionType> = {
| /**
| * @description: 工单配置保存方法
| * @param {*} e
| * @param {array} args
| * @return {*}
| */
| SaveCofig: (param: CustModalParams) => {
| return new Promise((resolve, reject) => {
| try {
| const form = param.values['prodinfo'];
| const wo = param.values['mValues'];
| const _wo = cloneDeep(wo);
| _wo.ROUTE_STATUS = 1;
| _wo.ROUTE_CODE = form.ROUTE_CODE;
| SaveEntity(_wo, true, 'BIZ_MES_WO').then((action) => {
| if (action.IsSuccessed) {
| SP_MES_PROD2WO({ rotId: form.ROT_ID, wo: wo.ORDER_NO }).then((res) => {
| if (!res.IsSuccessed) {
| SaveEntity(wo, true, 'BIZ_MES_WO');
| }
| resolve(res);
| });
| } else {
| reject(action);
| }
| });
| } catch {
| reject(false);
| }
| });
| },
| /**
| * @description: 工单下发保存方法
| * @param {CustModalParams} param
| * @return {*}
| */
| SaveWoBatch: (param: CustModalParams) => {
| return new Promise((resolve, reject) => {
| try {
| const form = param.values['forminfo'];
| const wo = param.values['mValues'];
| wo.STATUS = wo.STATUS == 3 ? wo.STATUS : 2;
| let input: SaveWoBatchInput = {
| Wo: wo,
| WoBatch: {
| ID: buildUUID(),
| CREATE_TIME: new Date(),
| CREATE_USER: useUserStore().getUserInfo.userId as string,
| UPDATE_TIME: new Date(),
| UPDATE_USER: useUserStore().getUserInfo.userId as string,
| GHOST_ROW: false,
| AUTH_ORG: useUserStore().getUserInfo.orgCode,
| AUTH_PROD: useUserStore().getUserInfo.prodCode as string,
| AUTH_WH: '',
| ORDER_NO: wo.ORDER_NO,
| STATUS: wo.STATUS,
| ITEM_CODE: wo.ITEM_CODE,
| CUST_CODE: wo.CUST_CODE,
| FACTORY: wo.FACTORY,
| WS_CODE: wo.WS_CODE,
| ACT_LINE: form.ACT_LINE,
| STD_WORKER_QTY: wo.STD_WORKER_QTY,
| ACT_WORKER_QTY: wo.ACT_WORKER_QTY,
| RELEASE_TIME: new Date(),
| RELEASE_USER: useUserStore().getUserInfo.userId as string,
| PLAN_QTY: form.RELEASE_QTY,
| INPUT_QTY: wo.INPUT_QTY,
| OUTPUT_QTY: wo.OUTPUT_QTY,
| SCRAP_QTY: wo.SCRAP_QTY,
| STOCK_IN_QTY: wo.STOCK_IN_QTY,
| UPH: wo.UPH,
| UPPH: wo.UPPH,
| REMARK: wo.REMARK,
| ACT_START_TIME: wo.ACT_START_TIME,
| ACT_END_TIME: wo.ACT_END_TIME,
| BATCH_NO: '',
| },
| IfToCust: form.IfToCust,
| };
| SaveMesBatchWo(input).then((action) => {
| resolve(action);
| });
| } catch {
| reject(false);
| }
| });
| },
| initRoute: () => {},
| };
|
| /**
| * @description: 跳转到详情页面方法
| * @param {Fn} go
| * @return {*}
| */
| function goDetail(go: Fn, params: Recordable) {
| const id = {
| ID: params['record'].ID,
| CODE: params['record']['ORDER_NO'],
| Name: 'BIZ_MES_WO_BATCH',
| Tabs: [
| {
| name: '工单批次',
| tableTitle: '批次',
| entityName: 'BIZ_MES_WO_BATCH',
| key: 'batch'
| },
| // {
| // name: '工单批次2',
| // tableTitle: '批次2',
| // entityName: 'BIZ_U9_ASN_DTL',
| // key: 'batch2'
| // }
| ],
| pageTitle: '工单详情', //详情页面标题
| contentStr: '这里是工单批次管理页面,可以显示工单下发的所有批次详情',
| detailName: `工单[${params['record'].ORDER_NO}]批次详情`,
| keyFieldValues: { ORDER_NO: params['record']['ORDER_NO'] },
| colSlots: params['colSlots'].value,
| SessionName: 'BIZ_MES_WO_BATCH_update',
| ifSave: false,
| };
| // 将对象转换为JSON字符串并保存到sessionStorage
| sessionStorage.removeItem(`${id.SessionName}_params`);
| sessionStorage.setItem(`${id.SessionName}_params`, encodeURI(JSON.stringify(id)));
| go(`/BIZ_MES_WO_BATCH/${encodeURI(JSON.stringify({ sName: id.SessionName, Name: id.Name }))}`);
| }
|
| /**
| * @description: 配置工艺
| * @param {Recordable} record
| * @param {array} args
| * @return {*}
| */
| function handleConfig(args, params: Recordable) {
| const go = args[5];
| const id = {
| ID: params['record'].ID,
| Name: 'WoRouteBinding',
| CODE: params['record'].ORDER_NO,
| Title: `工单[${params['record'].ORDER_NO}]工艺绑定`,
| colSlots:
| params['colSlots'].value /* 表格内的查询表单字段的插槽列表,一般用于弹出选择框按钮 */,
| crudColSlots: {
| BAS_PKG_DTL: ['BAS_LABEL_TEMP1add'],
| ItemCode: ['BAS_CODE_RULE1add'],
| } /* 增删改表单字段的插槽列表,一般用于弹出选择框按钮 */,
| OtherTableName: [
| 'BAS_PKG_DTL',
| 'ItemCode',
| ] /* 自定义显示列表的表名,跟上面增删改的表名一致,有多个就放列表中 */,
| record: params['record'],
| dense: true,
| pageTitle: `工单工艺绑定`,
| pageContent: `这里是管理工单的工艺绑定,一个工单可以绑定一个工艺路线,并可以保存为客户专用的工艺路线`,
| SessionName: 'WoRouteBinding_update',
| ifSave: false,
| rotType: 'Wo',
| };
| // 将对象转换为JSON字符串并保存到sessionStorage
| sessionStorage.removeItem(`${id.SessionName}_params`);
| sessionStorage.setItem(`${id.SessionName}_params`, encodeURI(JSON.stringify(id)));
| /* 设置标志,以根据缓存数据取数据 */
| const useProdRoute = useProdRouteStore();
| useProdRoute.setChangeToCPPage(true);
| go(`/WoRouteBinding/CP/${encodeURI(JSON.stringify({ sName: id.SessionName, Name: id.Name }))}`);
| }
|
| /**
| * @description: 下发
| * @param {*} record
| * @return {*}
| */
| function handleRelease(args, params: Recordable) {
| const openCustModal = args[7];
| openCustModal(true, {
| isUpdate: true, //是否更新操作
| ctype: 'BIZ_MES_WO', //是哪个页面
| title: '工单下发', //标题
| width: '900px', //弹出框宽度
| formEl: params['useFormData'].value,
| formElName: ['forminfo'], //表单插槽名称
| RowKeys: { add: 'ROUTE_CODE', set: 'ROUTE_CODE' }, //插槽的弹出框选择的code
| fnName: 'SaveWoBatch', //保存方法名
| initFnName: {}, //初始化方法名,没有就留空{}
| values: params['record'], //表单记录
| });
| }
|
| const woformSchema: FormSchema[] = [
| {
| field: 'PLAN_QTY',
| label: '工单数量',
| component: 'Input',
| required: true,
| colProps: {
| span: 24,
| },
| dynamicDisabled: ({ values }) => {
| return true;
| },
| },
| {
| field: 'RELEASE_QTY',
| label: '工单下发数量',
| component: 'Input',
| required: true,
| colProps: {
| span: 24,
| },
| },
| {
| label: '实际产线',
| field: 'ACT_LINE',
| component: 'ApiSelect',
| required: true,
| colProps: {
| span: 24,
| },
| componentProps: {
| api: getEntity,
| params: { entityName: 'MES_LINE', sqlcmd: ' 1=1 ', order: '' },
| resultField: 'Data.Items',
| labelField: 'LINE_NAME',
| valueField: 'LINE_CODE',
| },
| },
| {
| field: 'IfToCust',
| component: 'Switch',
| label: '是否保存工艺路线到客户',
| defaultValue: true,
| colProps: {
| span: 8,
| },
| labelWidth: 200,
| },
| // {
| // label: '工艺路线',
| // field: 'ROUTE_CODE',
| // component: 'Input',
| // required: true,
| // colProps: {
| // span: 22,
| // },
| // },
| // {
| // field: 'add',
| // component: 'Input',
| // label: '1',
| // colSlot: 'add',
| // defaultValue: 'MES_ROUTE',
| // colProps: {
| // span: 1,
| // },
| // },
| // {
| // field: 'set',
| // component: 'Input',
| // label: '1',
| // colSlot: 'set',
| // defaultValue: 'MES_ROUTE',
| // colProps: {
| // span: 1,
| // },
| // },
| ];
|
| const woCfgformSchema: FormSchema[] = [
| {
| field: 'ORDER_NO',
| component: 'Input',
| label: '工单号',
| colProps: {
| span: 8,
| },
| componentProps: {
| placeholder: '请输入工单号',
| onChange: (e: any) => {
| console.log(e);
| },
| },
| dynamicDisabled: true,
| },
| {
| field: 'ORDER_TYPE',
| component: 'ApiSelect',
| label: '工单类型',
| colProps: {
| span: 8,
| },
| defaultValue: 0,
| componentProps: {
| api: GetEnum,
| params: { name: 'BIZ_MES_WO+ORDER_TYPEs' },
| resultField: 'Data',
| labelField: unref(getLocale) == 'zh_CN' ? 'Desc' : 'Name',
| valueField: 'Value',
| placeholder: '请选择工单类型',
| },
| dynamicDisabled: true,
| },
| {
| field: 'PLAN_QTY',
| component: 'Input',
| label: '计划数量',
| colProps: {
| span: 8,
| },
| dynamicDisabled: true,
| },
| ];
|
| const prodCfgformSchema: FormSchema[] = [
| {
| field: 'ITEM_CODE',
| component: 'Input',
| label: '物料编码',
| required: true,
| colProps: {
| span: 12,
| },
| componentProps: {
| placeholder: '请输入物料编码',
| onChange: (e: any) => {
| console.log(e);
| },
| },
| dynamicDisabled: true,
| },
| {
| field: 'ITEM_TYPE',
| component: 'Input',
| label: '物料类型',
| colProps: {
| span: 12,
| },
| },
| {
| label: '工艺路线',
| field: 'ROUTE_CODE',
| component: 'Input',
| required: true,
| colProps: {
| span: 12,
| },
| },
| {
| field: 'addRot',
| component: 'Input',
| label: '1',
| colSlot: 'addRot',
| defaultValue: 'MES_ROUTE',
| colProps: {
| span: 1,
| },
| },
| {
| field: 'setRot',
| component: 'Input',
| label: '1',
| colSlot: 'setRot',
| defaultValue: 'MES_ROUTE',
| colProps: {
| span: 1,
| },
| },
| {
| label: '工艺路线',
| field: 'ROT_ID',
| component: 'Input',
| show: false,
| colProps: {
| span: 12,
| },
| },
| // {
| // field: 'fieldsc',
| // component: 'Upload',
| // label: '打印模板',
| // colProps: {
| // span: 10,
| // },
| // rules: [{ required: true, message: '请选择上传文件' }],
| // componentProps: {
| // api: uploadApi,
| // multiple: false,
| // },
| // },
| ];
|
| return [methods, ActionColumn];
| }
|
| export default _default;
|
|