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
| const menuMap = {
| 'C2C_0': '',
| 'C2C支付方式模板_1': '',
| 'C2C支付方式管理_1': '',
| 'C2C承兑商管理_1': '',
| 'C2C广告配置_1': '',
| 'C2C订单_1': '',
| 'C2C申诉_1': '',
| '理财矿机_0': '',
| '理财配置_1': '',
| '矿机配置_1': '',
| '理财订单_1': '',
| '矿机订单_1': '',
| '质押借币订单_1': '',
| '报表_0': '',
| '总充提报表_1': '',
| '代理商充提报表_1': '',
| '用户收益报表_1': '',
| '配置_0': '',
| '汇率配置_1': '',
| '用户端内容管理_1': '',
| '新闻管理_1': '',
| '横幅管理_1': '',
| '停盘配置_1': '',
| '系统_0': '',
| '菜单管理_1': '',
| '系统参数(ROOT)_1': '',
| '系统参数_1': '',
| '客服管理_1': '',
| '角色管理_1': '',
| '系统用户管理_1': '',
| '账变日志_1': '',
| '操作日志_1': '',
| '转账转换日志_1': '',
| '验证码日志_1': '',
| '用户管理_0': '',
| '综合查询_1': '',
| '用户基础管理_1': '',
| '用户管理_1': '',
| '行情管理_1': '',
| '用户关系管理_0': '.user_untreated_count',
| '代理商_1': '',
| '推荐关系_1': '',
| '用户基础认证_1': '.kyc_untreated_cout',
| '用户高级认证_1': '.kyc_high_level_untreated_cout',
| '人工重置管理_1': '.user_safeword_apply_untreated_cout',
| '财务_0': '.money_untreated_count',
| '充值订单_1': '.recharge_blockchain_order_untreated_cout',
| '提现订单_1': '.withdraw_order_untreated_cout',
| '银行卡订单_1': '.bank_card_order_untreated_cout',
| '数字货币(合约)_0': '.contract_order_untreated_cout',
| '永续持仓单(DC)_1': '.contract_order_untreated_cout-0',
| }
|
|
| const menuTipAdd = new Map([
| [".user_untreated_count", [".kyc_untreated_cout", ".kyc_high_level_untreated_cout",
| ".user_safeword_apply_untreated_cout-0", ".user_safeword_apply_untreated_cout-1",
| ".user_safeword_apply_untreated_cout-2", ".user_safeword_apply_untreated_cout-3"
| ]],
| [".money_untreated_count", [".recharge_blockchain_order_untreated_cout", ".withdraw_order_untreated_cout",
| ".bank_card_order_untreated_cout"
| ]],
| [".contract_order_untreated_cout",[".contract_order_untreated_cout-0"]],
| [".user_safeword_apply_untreated_cout", [".user_safeword_apply_untreated_cout-0",
| ".user_safeword_apply_untreated_cout-1", ".user_safeword_apply_untreated_cout-2",
| ".user_safeword_apply_untreated_cout-3"
| ]],
| ]);
|
|
| export {
| menuMap,
| menuTipAdd
| }
|
|