MasterLabelList.vue
24.1 KB
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
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="条码编号">
<a-input placeholder="请输入条码编号" v-model="queryParam.labelNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="物料号">
<a-input placeholder="请输入物料号" v-model="queryParam.matnr"></a-input>
</a-form-item>
</a-col>
<template v-if="toggleSearchStatus">
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="创建人">
<a-input placeholder="请输入创建人" v-model="queryParam.createBy"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="创建日期">
<j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择创建日期"
v-model="queryParam.createTime"></j-date>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="更新人">
<a-input placeholder="请输入更新人" v-model="queryParam.updateBy"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="更新日期">
<j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择更新日期"
v-model="queryParam.updateTime"></j-date>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="仓库编号">
<a-input placeholder="请输入仓库编号" v-model="queryParam.whNumber"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="BYD 批次">
<a-input placeholder="请输入BYD 批次" v-model="queryParam.batch"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="供应商批次">
<a-input placeholder="请输入供应商批次" v-model="queryParam.fbatch"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="物料描述">
<a-input placeholder="请输入物料描述" v-model="queryParam.maktx"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="供应商">
<a-input placeholder="请输入供应商" v-model="queryParam.lifnr"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="供应商描述">
<a-input placeholder="请输入供应商描述" v-model="queryParam.liktx"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="采购订单类型">
<a-input placeholder="请输入采购订单类型" v-model="queryParam.bsart"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="采购订单号">
<a-input placeholder="请输入采购订单号" v-model="queryParam.poNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="订单行项目号">
<a-input placeholder="请输入订单行项目号" v-model="queryParam.poItemNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="收货单号">
<a-input placeholder="请输入收货单号" v-model="queryParam.receiptNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="收货单行项目">
<a-input placeholder="请输入收货单行项目" v-model="queryParam.receiptItemNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="进仓单号">
<a-input placeholder="请输入进仓单号" v-model="queryParam.inboundNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="进仓单行项目">
<a-input placeholder="请输入进仓单行项目" v-model="queryParam.inboundItemNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="项目类别">
<a-input placeholder="请输入项目类别" v-model="queryParam.pstyp"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="数量">
<a-input placeholder="请输入数量" v-model="queryParam.boxQty"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="单位">
<a-input placeholder="请输入单位" v-model="queryParam.unit"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="收货日期">
<j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择收货日期"
v-model="queryParam.receiptDate"></j-date>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="需求跟踪号">
<a-input placeholder="请输入需求跟踪号" v-model="queryParam.bednr"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="生产日期">
<j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择生产日期"
v-model="queryParam.productDate"></j-date>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="有效期至">
<a-input placeholder="请输入有效期至" v-model="queryParam.effectDate"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="质检结果(Y)">
<a-input placeholder="请输入质检结果(Y)" v-model="queryParam.qcResultCode"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="原条码编号">
<a-input placeholder="请输入原条码编号" v-model="queryParam.flabelNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="在库状态">
<a-input placeholder="请输入在库状态" v-model="queryParam.labelStatus"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="备注">
<a-input placeholder="请输入备注" v-model="queryParam.remark"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="检验员">
<a-input placeholder="请输入检验员" v-model="queryParam.qcPeople"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="检验日期">
<j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择检验日期"
v-model="queryParam.qcDate"></j-date>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="不合格原因">
<a-input placeholder="请输入不合格原因" v-model="queryParam.returnReasonType"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="包条码ID">
<a-input placeholder="请输入包条码ID" v-model="queryParam.packLabelNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="栈板条码ID">
<a-input placeholder="请输入栈板条码ID" v-model="queryParam.palletLabelNo"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="特殊库存类型">
<a-input placeholder="请输入特殊库存类型" v-model="queryParam.sobkz"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="YLZD1">
<a-input placeholder="请输入YLZD1" v-model="queryParam.ylzd1"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="YLZD2">
<a-input placeholder="请输入YLZD2" v-model="queryParam.ylzd2"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="YLZD3">
<a-input placeholder="请输入YLZD3" v-model="queryParam.ylzd3"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="YLZD4">
<a-input placeholder="请输入YLZD4" v-model="queryParam.ylzd4"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="YLZD5">
<a-input placeholder="请输入YLZD5" v-model="queryParam.ylzd5"></a-input>
</a-form-item>
</a-col>
</template>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<a @click="handleToggleSearch" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
</a>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('主条码数据')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl"
@change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<!-- 高级查询区域 -->
<j-super-query :fieldList="superFieldList" ref="superQueryModal"
@handleSuperQuery="handleSuperQuery"></j-super-query>
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel">
<a-icon type="delete"/>
删除
</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作
<a-icon type="down"/>
</a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt=""
style="max-width:80px;font-size: 12px;font-style: italic;"/>
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical"/>
<a-dropdown>
<a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<master-label-modal ref="modalForm" @ok="modalFormOk"></master-label-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import MasterLabelModal from './modules/MasterLabelModal'
export default {
name: 'MasterLabelList',
mixins: [JeecgListMixin, mixinDevice],
components: {
MasterLabelModal
},
data() {
return {
description: '主条码数据管理页面',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
align: "center",
customRender: function (t, r, index) {
return parseInt(index) + 1;
}
},
{
title: '条码编号',
align: "center",
dataIndex: 'labelNo'
},
{
title: '仓库编号',
align: "center",
dataIndex: 'whNumber'
},
{
title: 'BYD 批次',
align: "center",
dataIndex: 'batch'
},
{
title: '供应商批次',
align: "center",
dataIndex: 'fbatch'
},
{
title: '物料号',
align: "center",
dataIndex: 'matnr'
},
{
title: '物料描述',
align: "center",
dataIndex: 'maktx'
},
{
title: '供应商',
align: "center",
dataIndex: 'lifnr'
},
{
title: '供应商描述',
align: "center",
dataIndex: 'liktx'
},
{
title: '采购订单类型',
align: "center",
dataIndex: 'bsart'
},
{
title: '采购订单号',
align: "center",
dataIndex: 'poNo'
},
{
title: '订单行项目号',
align: "center",
dataIndex: 'poItemNo'
},
{
title: '收货单号',
align: "center",
dataIndex: 'receiptNo'
},
{
title: '收货单行项目',
align: "center",
dataIndex: 'receiptItemNo'
},
{
title: '进仓单号',
align: "center",
dataIndex: 'inboundNo'
},
{
title: '进仓单行项目',
align: "center",
dataIndex: 'inboundItemNo'
},
{
title: '项目类别',
align: "center",
dataIndex: 'pstyp'
},
{
title: '数量',
align: "center",
dataIndex: 'boxQty'
},
{
title: '单位',
align: "center",
dataIndex: 'unit'
},
{
title: '收货日期',
align: "center",
dataIndex: 'receiptDate'
},
{
title: '需求跟踪号',
align: "center",
dataIndex: 'bednr'
},
{
title: '生产日期',
align: "center",
dataIndex: 'productDate'
},
{
title: '有效期至',
align: "center",
dataIndex: 'effectDate'
},
{
title: '质检结果(Y)',
align: "center",
dataIndex: 'qcResultCode'
},
{
title: '原条码编号',
align: "center",
dataIndex: 'flabelNo'
},
{
title: '在库状态',
align: "center",
dataIndex: 'labelStatus'
},
{
title: '备注',
align: "center",
dataIndex: 'remark'
},
{
title: '检验员',
align: "center",
dataIndex: 'qcPeople'
},
{
title: '检验日期',
align: "center",
dataIndex: 'qcDate'
},
{
title: '不合格原因',
align: "center",
dataIndex: 'returnReasonType'
},
{
title: '包条码ID',
align: "center",
dataIndex: 'packLabelNo'
},
{
title: '栈板条码ID',
align: "center",
dataIndex: 'palletLabelNo'
},
{
title: '特殊库存类型',
align: "center",
dataIndex: 'sobkz'
},
{
title: 'YLZD1',
align: "center",
dataIndex: 'ylzd1'
},
{
title: 'YLZD2',
align: "center",
dataIndex: 'ylzd2'
},
{
title: 'YLZD3',
align: "center",
dataIndex: 'ylzd3'
},
{
title: 'YLZD4',
align: "center",
dataIndex: 'ylzd4'
},
{
title: 'YLZD5',
align: "center",
dataIndex: 'ylzd5'
},
{
title: '操作',
dataIndex: 'action',
align: "center",
fixed: "right",
width: 147,
scopedSlots: {customRender: 'action'}
}
],
url: {
list: "/config/masterLabel/list",
delete: "/config/masterLabel/delete",
deleteBatch: "/config/masterLabel/deleteBatch",
exportXlsUrl: "/config/masterLabel/exportXls",
importExcelUrl: "config/masterLabel/importExcel",
},
dictOptions: {},
superFieldList: [],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function () {
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
methods: {
initDictConfig() {
},
getSuperFieldList() {
let fieldList = [];
fieldList.push({type: 'string', value: 'createBy', text: '创建人', dictCode: ''})
fieldList.push({type: 'datetime', value: 'createTime', text: '创建日期'})
fieldList.push({type: 'string', value: 'updateBy', text: '更新人', dictCode: ''})
fieldList.push({type: 'datetime', value: 'updateTime', text: '更新日期'})
fieldList.push({type: 'string', value: 'labelNo', text: '条码编号', dictCode: ''})
fieldList.push({type: 'string', value: 'whNumber', text: '仓库编号', dictCode: ''})
fieldList.push({type: 'string', value: 'batch', text: 'BYD 批次', dictCode: ''})
fieldList.push({type: 'string', value: 'fbatch', text: '供应商批次', dictCode: ''})
fieldList.push({type: 'string', value: 'matnr', text: '物料号', dictCode: ''})
fieldList.push({type: 'string', value: 'maktx', text: '物料描述', dictCode: ''})
fieldList.push({type: 'string', value: 'lifnr', text: '供应商', dictCode: ''})
fieldList.push({type: 'string', value: 'liktx', text: '供应商描述', dictCode: ''})
fieldList.push({type: 'string', value: 'bsart', text: '采购订单类型', dictCode: ''})
fieldList.push({type: 'string', value: 'poNo', text: '采购订单号', dictCode: ''})
fieldList.push({type: 'string', value: 'poItemNo', text: '订单行项目号', dictCode: ''})
fieldList.push({type: 'string', value: 'receiptNo', text: '收货单号', dictCode: ''})
fieldList.push({type: 'string', value: 'receiptItemNo', text: '收货单行项目', dictCode: ''})
fieldList.push({type: 'string', value: 'inboundNo', text: '进仓单号', dictCode: ''})
fieldList.push({type: 'string', value: 'inboundItemNo', text: '进仓单行项目', dictCode: ''})
fieldList.push({type: 'string', value: 'pstyp', text: '项目类别', dictCode: ''})
fieldList.push({type: 'BigDecimal', value: 'boxQty', text: '数量', dictCode: ''})
fieldList.push({type: 'string', value: 'unit', text: '单位', dictCode: ''})
fieldList.push({type: 'datetime', value: 'receiptDate', text: '收货日期'})
fieldList.push({type: 'string', value: 'bednr', text: '需求跟踪号', dictCode: ''})
fieldList.push({type: 'datetime', value: 'productDate', text: '生产日期'})
fieldList.push({type: 'BigDecimal', value: 'effectDate', text: '有效期至', dictCode: ''})
fieldList.push({type: 'string', value: 'qcResultCode', text: '质检结果(Y)', dictCode: ''})
fieldList.push({type: 'string', value: 'flabelNo', text: '原条码编号', dictCode: ''})
fieldList.push({type: 'string', value: 'labelStatus', text: '在库状态', dictCode: ''})
fieldList.push({type: 'string', value: 'remark', text: '备注', dictCode: ''})
fieldList.push({type: 'string', value: 'qcPeople', text: '检验员', dictCode: ''})
fieldList.push({type: 'datetime', value: 'qcDate', text: '检验日期'})
fieldList.push({type: 'string', value: 'returnReasonType', text: '不合格原因', dictCode: ''})
fieldList.push({type: 'string', value: 'packLabelNo', text: '包条码ID', dictCode: ''})
fieldList.push({type: 'string', value: 'palletLabelNo', text: '栈板条码ID', dictCode: ''})
fieldList.push({type: 'string', value: 'sobkz', text: '特殊库存类型', dictCode: ''})
fieldList.push({type: 'string', value: 'ylzd1', text: 'YLZD1', dictCode: ''})
fieldList.push({type: 'string', value: 'ylzd2', text: 'YLZD2', dictCode: ''})
fieldList.push({type: 'string', value: 'ylzd3', text: 'YLZD3', dictCode: ''})
fieldList.push({type: 'string', value: 'ylzd4', text: 'YLZD4', dictCode: ''})
fieldList.push({type: 'string', value: 'ylzd5', text: 'YLZD5', dictCode: ''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>