派生自 wuyushui/SewerAndRainNetwork

徐旺旺
2021-01-05 bb63e626e2222227cceb9b7a7e2ed4b632af3aa4
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
773
774
775
776
777
778
779
780
781
782
/* 业务字典
 -------------------------- */
// 车辆证件类型
export const DICT_CAR_CERTIFICATE_TYPE = [
  {
    typeName: '营业执照',
    type: '120001'
  },
  {
    typeName: '危险货物道路运输经营许可证',
    type: '120002'
  },
  {
    typeName: '危险货物水路运输许可证',
    type: '120003'
  },
  {
    typeName: '固废处置经营许可证',
    type: '120004'
  },
  {
    typeName: '道路运输证',
    type: '120005'
  },
  {
    typeName: '车辆行驶证',
    type: '120006'
  },
  {
    typeName: '罐检报告',
    type: '120007'
  },
  {
    typeName: '安全管理证',
    type: '120008'
  },
  {
    typeName: '危险货物适装证',
    type: '120009'
  },
  {
    typeName: '机动车驾驶证',
    type: '120010'
  },
  {
    typeName: '危险品从业资格证',
    type: '120011'
  },
  {
    typeName: '危险废物综合经营许可证',
    type: '120012'
  },
  {
    typeName: '危险废物收集经营许可证',
    type: '120013'
  }
]
 
// 资源库类型
export const DICT_RESOURCE_TYPE = [
  {
    resourceTypeName: '承运商',
    resourceType: '400001'
  },
  {
    resourceTypeName: '车辆',
    resourceType: '400002'
  },
  {
    resourceTypeName: '船舶',
    resourceType: '400003'
  },
  {
    resourceTypeName: '铁路自备车',
    resourceType: '400004'
  },
  {
    resourceTypeName: '驾押人员',
    resourceType: '400005'
  },
  {
    resourceTypeName: '危废名录',
    resourceType: '400006'
  },
  {
    resourceTypeName: '危废处置商',
    resourceType: '400007'
  },
  {
    resourceTypeName: '危废转移库',
    resourceType: '400008'
  }
]
 
// 黑名单级别
export const DICT_BLACK_LIST_TYPE = [
  {
    blacklistTypeName: '警告',
    blacklistType: '490001'
  },
  {
    blacklistTypeName: '禁用',
    blacklistType: '490002'
  },
  {
    blacklistTypeName: '无',
    blacklistType: '490000'
  }
]
 
// 黑名单进入原因
export const DICT_BLACK_LIST_REASON = [
  {
    enterReasonName: '违规',
    enterReason: '491001'
  },
  {
    enterReasonName: '资质过期',
    enterReason: '491002'
  },
  {
    enterReasonName: '其他',
    enterReason: '491009'
  }
]
 
// 添加黑名单
export const DICT_BLACKLIST_OPERATION = [
  {
    optTypeName: '添加黑名单',
    optType: '492001'
  },
  {
    optTypeName: '移除黑名单',
    optType: '492002'
  }
]
 
// 启用 停用
export const DICT_IS_ENABLED_RADIO = [
  {
    label: '启用',
    value: '110001'
  },
  {
    label: '停用',
    value: '110002'
  }
]
export const DICT_IS_ENABLED_COMPANY = [
  {
    isEnabledName: '使用中',
    isEnabled: '110001'
  },
  {
    isEnabledName: '已停用',
    isEnabled: '110002'
  }
]
export const DICT_IS_YES_NO = [
  {
    label: '是',
    value: '110001'
  },
  {
    label: '否',
    value: '110002'
  }
]
 
// 火灾类别
export const DICT_FIRE_HAZARD_TYPE = [
  {
    fireHazardTypeName: '甲类',
    fireHazardType: '770001'
  },
  {
    fireHazardTypeName: '乙类',
    fireHazardType: '770002'
  },
  {
    fireHazardTypeName: '丙类',
    fireHazardType: '770003'
  }
]
 
// 服务类型
export const DICT_SERVICE_TYPE_HCS = [
  {
    serviceTypeName: '危化品',
    serviceType: '1'
  },
  {
    serviceTypeName: '危废',
    serviceType: '2'
  },
  {
    serviceTypeName: '危化品&危废',
    serviceType: '0'
  }
]
 
// 途经点数量
export const DICT_HWS_WAYPOINT_AMOUNT = [
  {
    hwsWayPointAmountName: '0',
    hwsWayPointCount: 0
  },
  {
    hwsWayPointAmountName: '1',
    hwsWayPointCount: 1
  },
  {
    hwsWayPointAmountName: '2',
    hwsWayPointCount: 2
  },
  {
    hwsWayPointAmountName: '3',
    hwsWayPointCount: 3
  },
  {
    hwsWayPointAmountName: '4',
    hwsWayPointCount: 4
  },
  {
    hwsWayPointAmountName: '5',
    hwsWayPointCount: 5
  },
  {
    hwsWayPointAmountName: '6',
    hwsWayPointCount: 6
  },
  {
    hwsWayPointAmountName: '7',
    hwsWayPointCount: 7
  },
  {
    hwsWayPointAmountName: '8',
    hwsWayPointCount: 8
  },
  {
    hwsWayPointAmountName: '9',
    hwsWayPointCount: 9
  },
  {
    hwsWayPointAmountName: '10',
    hwsWayPointCount: 10
  }
]
 
// 车辆环保等级
export const DICT_LEVEL = [
  {
    envProtLevelName: '国Ⅰ',
    envProtLevel: '420001'
  },
  {
    envProtLevelName: '国Ⅱ',
    envProtLevel: '420002'
  },
  {
    envProtLevelName: '国Ⅲ',
    envProtLevel: '420003'
  },
  {
    envProtLevelName: '国Ⅳ',
    envProtLevel: '420004'
  },
  {
    envProtLevelName: '国Ⅴ',
    envProtLevel: '420005'
  },
  {
    envProtLevelName: '国Ⅵ',
    envProtLevel: '420006'
  },
  {
    envProtLevelName: '其他',
    envProtLevel: '420009'
  }
]
 
// 驾押人员类型
export const DICT_DRIVERS_TYPE = [
  {
    driverTypeName: '驾驶员',
    driverType: '450001'
  },
  {
    driverTypeName: '押运员',
    driverType: '450002'
  },
  {
    driverTypeName: '驾驶员/押运员',
    driverType: '450003'
  }
]
 
// 组织机构类别
export const DICT_ORG_LEVEL = [{
  orgLevelName: '集团公司级',
  orgLevel: '510001'
}, {
  orgLevelName: '事业部/管理部/专业公司',
  orgLevel: '510002'
}, {
  orgLevelName: '企业级',
  orgLevel: '510003'
}, {
  orgLevelName: '二级单位',
  orgLevel: '510004'
}, {
  orgLevelName: '基层单位',
  orgLevel: '510005'
}, {
  orgLevelName: '其它',
  orgLevel: '510006'
}]
 
// 组织机构性质
export const DICT_ORG_CHARACTER = [
  {
    orgCharacterName: '股份',
    orgCharacter: '520001'
  },
  {
    orgCharacterName: '存续',
    orgCharacter: '520002'
  }
]
 
// 组织机构板块
export const DICT_ORG_SECTOR = [
  {
    sectorName: '销售板块',
    orgSector: '10010088'
  },
  {
    sectorName: '炼油板块',
    orgSector: '30070000'
  },
  {
    sectorName: '化工板块',
    orgSector: '30090000'
  },
  {
    sectorName: '油田板块',
    orgSector: '30050000'
  }
]
 
// 运输状态
export const DICT_TRANS_STATE = [
  {
    statusName: '待发运',
    status: '590002'
  },
  {
    statusName: '运输中',
    status: '590006'
  },
  {
    statusName: '已完成',
    status: '590007'
  },
  {
    statusName: '已作废',
    status: '590009'
  }
]
 
// 业务范围
export const DICT_TRANS_METHOD = [
  {
    businessScopeName: '公路',
    businessScope: 'RD'
  },
  {
    businessScopeName: '水路 ',
    businessScope: 'RL'
  },
  {
    businessScopeName: '公路&水路',
    businessScope: 'AL'
  }
]
 
// 通知配置
export const NOTICE_CONFIG_TYPE = [
  {
    noticeTypeName: '禁行区域通知',
    noticeType: '620001'
  },
  {
    noticeTypeName: '提醒区域通知',
    noticeType: '620002'
  },
  {
    noticeTypeName: '行驶路径偏移通知 ',
    noticeType: '620003'
  },
  {
    noticeTypeName: '车辆报警通知 ',
    noticeType: '620004'
  },
  {
    noticeTypeName: '车辆报警通知',
    noticeType: '620005'
  }
]
 
// 通知配置
export const DICT_NOTICE_CONFIG_REMIND_TYPE = [
  {
    remindTypeName: '实时提醒',
    remindType: '630001'
  },
  {
    remindTypeName: '日汇总提醒',
    remindType: '630002'
  },
  {
    remindTypeName: '周汇总提醒 ',
    remindType: '630003'
  }
]
 
// 系统数据来源
export const DICT_SOURCE_STATE = [
  {
    sourceSysName: '自有',
    sourceSys: '640001'
  }
]
 
// 危化品类型
export const DICT_HCS_TYPE = [
  {
    hcsTypeName: '化工品',
    hcsType: '122001'
  },
  {
    hcsTypeName: '成品油',
    hcsType: '122002'
  },
  {
    hcsTypeName: '润滑油',
    hcsType: '122003'
  },
  {
    hcsTypeName: '天然气',
    hcsType: '122004'
  },
  {
    hcsTypeName: '液化石油气',
    hcsType: '122005'
  }
]
 
// 监控类型
export const DICT_MONITOR_TYPE = [
  {
    monitorTypeName: '一般监控',
    monitorType: '130001'
  },
  {
    monitorTypeName: '重点监控',
    monitorType: '130002'
  }
]
 
// 行政级别
export const DICT_ADMINISTRATIVE_LEVEL = [
  {
    adminLevelName: '正部级',
    adminLevel: '650001'
  },
  {
    adminLevelName: '副部级',
    adminLevel: '650002'
  },
  {
    adminLevelName: '正局级',
    adminLevel: '650003'
  },
  {
    adminLevelName: '副局级',
    adminLevel: '650004'
  },
  {
    adminLevelName: '正处级',
    adminLevel: '650005'
  },
  {
    adminLevelName: '副处级',
    adminLevel: '650006'
  },
  {
    adminLevelName: '正科级',
    adminLevel: '650007'
  },
  {
    adminLevelName: '副科级',
    adminLevel: '650008'
  },
  {
    adminLevelName: '一般管理人员',
    adminLevel: '650009'
  },
  {
    adminLevelName: '操作人员',
    adminLevel: '6500010'
  }
]
 
// 职称
export const DICT_POSITIONAL_TITLES = [
  {
    PositionalTitlesName: '助理工程师',
    jobTitle: '710001'
  },
  {
    PositionalTitlesName: '工程师',
    jobTitle: '710002'
  },
  {
    PositionalTitlesName: '高级工程师',
    jobTitle: '710003'
  },
  {
    PositionalTitlesName: '教授级高级工程师',
    jobTitle: '710004'
  },
  {
    PositionalTitlesName: '主任医师',
    jobTitle: '710005'
  },
  {
    PositionalTitlesName: '副主任医师',
    jobTitle: '710006'
  },
  {
    PositionalTitlesName: '高级经济师',
    jobTitle: '710007'
  },
  {
    PositionalTitlesName: '经济师',
    jobTitle: '710008'
  },
  {
    PositionalTitlesName: '高级政工师',
    jobTitle: '710009'
  },
  {
    PositionalTitlesName: '院士',
    jobTitle: '710010'
  },
  {
    PositionalTitlesName: '政工师',
    jobTitle: '710011'
  }
]
 
// 学历
export const DICT_EDUCATION = [
  {
    educationName: '初中',
    education: '660001'
  },
  {
    educationName: '高中',
    education: '660002'
  },
  {
    educationName: '大专',
    education: '660003'
  },
  {
    educationName: '大本',
    education: '660004'
  },
  {
    educationName: '硕士研究生',
    education: '660005'
  },
  {
    educationName: '博士研究生',
    education: '660006'
  },
  {
    educationName: '其他',
    education: '660007'
  }
]
 
// 性别
export const DICT_USER_SEX = [
  {
    value: '110011',
    label: '男'
  },
  {
    value: '110012',
    label: '女'
  }
]
 
// 车牌颜色
export const DICT_VEHICLE_COLOR = [
  {
    vehicleColorName: '蓝色',
    vehicleColor: '750001'
  },
  {
    vehicleColorName: '黄色',
    vehicleColor: '750002'
  },
  {
    vehicleColorName: '绿色',
    vehicleColor: '750003'
  }
]
 
// 业务类型
export const DICT_SERVICE_TYPE = [
  {
    value: '1',
    label: '危化品'
  },
  {
    value: '2',
    label: '危废'
  }
]
 
// 车辆类型
export const DICT_VEHILCE_TYPE = [
  {
    value: '730001',
    label: '签约车辆'
  },
  {
    value: '730002',
    label: '自有车辆'
  }
]
 
// 培训结果
export const DICT_TRAIN_RESULT = [
  {
    value: '110011',
    label: '合格'
  },
  {
    value: '110012',
    label: '不合格'
  }
]
 
// 运输类型
export const DICT_TRANSFER_TYPE = [
  {
    transferTypeName: '内部转移',
    transferType: '780001'
  },
  {
    transferTypeName: '外部配送',
    transferType: '780002'
  }
]
 
// 运输方式(运单管理)
export const DICT_TRANS_MODE = [
  {
    transModeName: '公路',
    transMode: 'RD'
  },
  {
    transModeName: '水路 ',
    transMode: 'RL'
  }
]
 
// 包装方式
export const DICT_PACKAGE_TYPE = [
  {
    value: '820001',
    label: '桶装'
  },
  {
    value: '820002',
    label: '储罐'
  }
]
 
// 表观形态
export const DICT_APPARENT_TYPE = [
  {
    apparentTypeName: '固态',
    apparentType: '810001'
  },
  {
    apparentTypeName: '液态',
    apparentType: '810002'
  },
  {
    apparentTypeName: '半固态',
    apparentType: '810003'
  },
  {
    apparentTypeName: '气态',
    apparentType: '810004'
  }
]
 
// 运单管理运单状态
export const DICT_ORDER_STATE = [
  {
    orderStateName: '待发运',
    orderState: '2'
  },
  {
    orderStateName: '运输中',
    orderState: '3'
  },
  {
    orderStateName: '已完成',
    orderState: '7'
  },
  {
    orderStateName: '已作废',
    orderState: '4'
  }
]
 
// 运单数据来源
export const DICT_ORDER_SOURCE = [
  {
    dictionaryName: '自建',
    dictionaryCode: 'ZJXT'
  },
  {
    dictionaryName: '炼销系统',
    dictionaryCode: 'LXXT'
  },
  {
    dictionaryName: '化销系统',
    dictionaryCode: 'HXXT'
  },
  {
    dictionaryName: '成品油系统',
    dictionaryCode: 'CPYXT'
  }
]
 
// 石化内外
export const DICT_PETRIFACTION = [
  {
    dictionaryName: '石化内',
    dictionaryCode: 'A'
  },
  {
    dictionaryName: '石化外',
    dictionaryCode: 'B'
  }
]
 
// 运输方式(运单列表)
export const DICT_WAYBILL_LIST = [
  {
    transModeName: '公路',
    transMode: 'RD'
  },
  {
    transModeName: '水路 ',
    transMode: 'RL'
  },
  {
    transModeName: '铁路 ',
    transMode: 'WT'
  }
]