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
const menuData = [
{
"name": "汇款业务",
"id": 100,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "汇款查询",
"id": 101,
"link": true,
"routePath": "/business/infcpd",
"parentNodeId": 100,
"icon": "el-icon-document"
},
{
"name": "跨境人民币查询",
"id": 102,
"link": true,
"routePath": "/business/cnysel",
"parentNodeId": 100,
"icon": "el-icon-document"
},
{
"name": "进口信用证",
"id": 400,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "进口信用证交易查询",
"id": 401,
"link": true,
"routePath": "/business/inflid",
"parentNodeId": 400,
"icon": "el-icon-document"
},
{
"name": "进口信用证单据查询",
"id": 402,
"link": true,
"routePath": "/business/infbrd",
"parentNodeId": 400,
"icon": "el-icon-document"
},
{
"name": "出口信用证",
"id": 300,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "出口信用证交易查询",
"id": 301,
"link": true,
"routePath": "/business/infled",
"parentNodeId": 300,
"icon": "el-icon-document"
},
{
"name": "出口信用证单据查询",
"id": 302,
"link": true,
"routePath": "/business/infbed",
"parentNodeId": 300,
"icon": "el-icon-document"
},
{
"name": "转让信用证查询",
"id": 303,
"link": true,
"routePath": "/business/infltd",
"parentNodeId": 300,
"icon": "el-icon-document"
},
{
"name": "转让信用证单据查询",
"id": 304,
"link": true,
"routePath": "/business/infbtd",
"parentNodeId": 300,
"icon": "el-icon-document"
},
{
"name": "买方信用证",
"id": 200,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "买方信用证交易查询",
"id": 201,
"link": true,
"routePath": "/business/infdid",
"parentNodeId": 200,
"icon": "el-icon-document"
},
{
"name": "买方信用证单据查询",
"id": 202,
"link": true,
"routePath": "/business/infbdd",
"parentNodeId": 200,
"icon": "el-icon-document"
},
{
"name": "卖方信用证",
"id": 2200,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "卖方信用证交易查询",
"id": 2201,
"link": true,
"routePath": "/business/infdet",
"parentNodeId": 2200,
"icon": "el-icon-document"
},
{
"name": "卖方信用证单据查询",
"id": 2202,
"link": true,
"routePath": "/business/infbfd",
"parentNodeId": 2200,
"icon": "el-icon-document"
},
{
"name": "融资业务",
"id": 1700,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "进口融资查询",
"id": 1701,
"link": true,
"routePath": "/business/inftrd",
"parentNodeId": 1700,
"icon": "el-icon-document"
},
{
"name": "出口融资查询",
"id": 1702,
"link": true,
"routePath": "/business/infbpd",
"parentNodeId": 1700,
"icon": "el-icon-document"
},
{
"name": "保函业务",
"id": 1300,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "保函入口交易",
"id": 1301,
"link": true,
"routePath": "/business/infgid",
"parentNodeId": 1300,
"icon": "el-icon-document"
},
{
"name": "保函赔付查询",
"id": 1302,
"link": true,
"routePath": "/business/infgcd",
"parentNodeId": 1300,
"icon": "el-icon-document"
},
{
"name": "托收业务",
"id": 600,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "出口托收查询",
"id": 601,
"link": true,
"routePath": "/business/infbod",
"parentNodeId": 600,
"icon": "el-icon-document"
},
{
"name": "打包托收查询",
"id": 602,
"link": true,
"routePath": "/business/infcld",
"parentNodeId": 600,
"icon": "el-icon-document"
},
{
"name": "光票托收查询",
"id": 603,
"link": true,
"routePath": "/business/infccd",
"parentNodeId": 600,
"icon": "el-icon-document"
},
{
"name": "其他业务",
"id": 500,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "进口代收查询",
"id": 501,
"link": true,
"routePath": "/business/infbcd",
"parentNodeId": 500,
"icon": "el-icon-document"
},
{
"name": "资产信息管理",
"id": 502,
"link": true,
"routePath": "/business/assetInfo",
"parentNodeId": 500,
"icon": "el-icon-document"
},
{
"name": "资产发布信息管理",
"id": 503,
"link": true,
"routePath": "/business/assetPub",
"parentNodeId": 500,
"icon": "el-icon-document"
},
{
"name": "资金信息管理",
"id": 504,
"link": true,
"routePath": "/business/fund",
"parentNodeId": 500,
"icon": "el-icon-document"
},
{
"name": "参数管理",
"id": 1000,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "用户信息查询",
"id": 1001,
"link": true,
"routePath": "/business/infusr",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "客户信息查询",
"id": 1002,
"link": true,
"routePath": "/business/infpty",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "客户地址查询",
"id": 1003,
"link": true,
"routePath": "/business/infpta",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "资金账户查询",
"id": 1004,
"link": true,
"routePath": "/business/infact",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "交易配置信息查询",
"id": 1005,
"link": true,
"routePath": "/business/infatp",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "保函文本查询",
"id": 1006,
"link": true,
"routePath": "/business/infatx",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "客户查询",
"id": 1007,
"link": true,
"routePath": "/business/infbch",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "国家代码查询",
"id": 1008,
"link": true,
"routePath": "/business/infcty",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "币种查询",
"id": 1009,
"link": true,
"routePath": "/business/infcur",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "费率查询",
"id": 1010,
"link": true,
"routePath": "/business/inffec",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "保函文本查询",
"id": 1011,
"link": true,
"routePath": "/business/infgtx",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "客户查询",
"id": 1012,
"link": true,
"routePath": "/business/infpty",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "复核级别查询",
"id": 1013,
"link": true,
"routePath": "/business/inftrl",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "柜员查询",
"id": 1014,
"link": true,
"routePath": "/business/infusr",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "报文格式信息查询",
"id": 1015,
"link": true,
"routePath": "/business/dblapf",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "银行行号信息查询",
"id": 1016,
"link": true,
"routePath": "/business/dblbnk",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "查询清算代理行",
"id": 1017,
"link": true,
"routePath": "/business/infbtb",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "实体查询",
"id": 1018,
"link": true,
"routePath": "/business/infety",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "交易备忘录查询",
"id": 1019,
"link": true,
"routePath": "/business/infdia",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "费用代码查询",
"id": 1020,
"link": true,
"routePath": "/business/inffee",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "业务解锁",
"id": 1021,
"link": true,
"routePath": "/business/inflck",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "查询保函额度信息",
"id": 1022,
"link": true,
"routePath": "/business/inflgb",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "牌价查询",
"id": 1023,
"link": true,
"routePath": "/business/infxrt",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "自贸区牌价查询",
"id": 1024,
"link": true,
"routePath": "/business/dblzmq",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "报文栏位映射信息查询",
"id": 1025,
"link": true,
"routePath": "/business/infswm",
"parentNodeId": 1000,
"icon": "el-icon-document"
},
{
"name": "服务管理",
"id": 1400,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "收报服务",
"id": 1401,
"link": true,
"routePath": "/business/switsk",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "发报服务",
"id": 1402,
"link": true,
"routePath": "/business/mgrtsk",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "订单复核",
"id": 1403,
"link": true,
"routePath": "/business/sptrel",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "订单分配服务",
"id": 1404,
"link": true,
"routePath": "/business/sptneg",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "订单服务",
"id": 1405,
"link": true,
"routePath": "/business/ordrel",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "批量汇款服务",
"id": 1406,
"link": true,
"routePath": "/business/cptbat",
"parentNodeId": 1400,
"icon": "el-icon-document"
},
{
"name": "智能审单",
"id": 1200,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "智能审单规则配置",
"id": 1201,
"link": true,
"routePath": "/business/examRule",
"parentNodeId": 1200,
"icon": "el-icon-document"
},
{
"name": "资本项目申报",
"id": 2800,
"link": false,
"routePath": "",
"parentNodeId": "-1",
"icon": "el-icon-folder"
},
{
"name": "申报查询入口",
"id": 2801,
"link": true,
"routePath": "/business/cfasel",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "增--外债海外代付",
"id": 2802,
"link": true,
"routePath": "/business/eadadd",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "查--外债海外代付",
"id": 2803,
"link": true,
"routePath": "/business/eadinf",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "改--外债海外代付",
"id": 2804,
"link": true,
"routePath": "/business/eadame",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "删--外债海外代付",
"id": 2805,
"link": true,
"routePath": "/business/eaddel",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "增 -- 外债远期信用证(含即期单证相符)",
"id": 2806,
"link": true,
"routePath": "/business/eafadd",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "查 -- 外债远期信用证(含即期单证相符)",
"id": 2807,
"link": true,
"routePath": "/business/eafinf",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "改 -- 外债远期信用证(含即期单证相符)",
"id": 2808,
"link": true,
"routePath": "/business/eafame",
"parentNodeId": 2800,
"icon": "el-icon-document"
},
{
"name": "删 -- 外债远期信用证(含即期单证相符)",
"id": 2809,
"link": true,
"routePath": "/business/eafdel",
"parentNodeId": 2800,
"icon": "el-icon-document"
}
]
export default menuData