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
| import { getImages } from "@/utils/index";
| export const qianbaoList = [
| {
| urlPath: "/wallet/walletOverview",
| title: "qianbaozonglan",
| iconPath: getImages("headIcon/account/wallet-overview.png"),
| key: "usdt",
| },
| // 数字货币
| {
| urlPath: "/wallet/cryptosAccounts",
| title: "shuzihuobiZhanghu",
| iconPath: getImages("headIcon/account/cryptos.png"),
| key: "crypto",
| },
| // 美股
| {
| urlPath: "/wallet/usStocksAccounts",
| title: "meiguZhanghu",
| iconPath: getImages("headIcon/account/us.png"),
| key: "us",
| },
| // 外汇
| {
| urlPath: "/wallet/forexAccounts",
| title: "waihuiZhanghu",
| iconPath: getImages("headIcon/account/forex.png"),
| key: "forex",
| },
| // etf
| {
| urlPath: "/wallet/etfAccounts",
| title: "etfZhanghu",
| iconPath: getImages("headIcon/account/etf.png"),
| key: "etf",
| },
| // // A股
| // {
| // urlPath: "/wallet/cnStocksAccounts",
| // title: "AguZhanghu",
| // iconPath: getImages("headIcon/account/cn.png"),
| // key: "cn",
| // },
| // 港股
| {
| urlPath: "/wallet/hkStocksAccounts",
| title: "gangguZhanghu",
| iconPath: getImages("headIcon/account/hk.png"),
| key: "hk",
| },
| // // 台股
| // {
| // urlPath: "/wallet/twStocksAccounts",
| // title: "taiguZhanghu",
| // iconPath: getImages("headIcon/account/tw.png"),
| // key: "tw",
| // },
| {
| urlPath: "/wallet/financialAccounts",
| title: "licaizhanghu",
| iconPath: getImages("headIcon/account/financial.png"),
| key: "financial",
| },
| {
| urlPath: "/wallet/assetOverview",
| title: "zichanzonglan",
| iconPath: getImages("headIcon/account/assetOverview.png"),
| key: "assetOverview",
| },
| ];
|
| export const dingdanList = [
| {
| urlPath: "/order/coinOrder",
| title: "shuzihuobilishi",
| iconPath: getImages("headIcon/wallet-menu/cryptos.png"),
| },
| {
| urlPath: "/order/usStocksOrder",
| title: "meigulishi",
| iconPath: getImages("headIcon/wallet-menu/us.png"),
| },
| {
| urlPath: "/order/forexOrder",
| title: "waihuilishi",
| iconPath: getImages("headIcon/wallet-menu/forex.png"),
| },
| {
| urlPath: "/order/etfOrder",
| title: "etflishi",
| iconPath: getImages("headIcon/wallet-menu/etf.png"),
| },
| // {
| // urlPath: "/order/cnStocksOrder",
| // title: "Agulishi",
| // iconPath: getImages("headIcon/wallet-menu/cn.png"),
| // },
| {
| urlPath: "/order/hkStocksOrder",
| title: "ganggulishi",
| iconPath: getImages("headIcon/wallet-menu/hk.png"),
| },
| // {
| // urlPath: "/order/twStocksOrder",
| // title: "taigulishi",
| // iconPath: getImages("headIcon/wallet-menu/tw.png"),
| // },
|
| {
| urlPath: "/order/financialOrder",
| title: "licailishi",
| iconPath: getImages("headIcon/wallet-menu/financial-account.png"),
| },
| {
| urlPath: "/order/changeRecord",
| title: "zhangbianjilu",
| iconPath: getImages("headIcon/wallet-menu/record.png"),
| },
| {
| urlPath: "/order/walletHistory",
| title: "qianbaolishi",
| iconPath: getImages("headIcon/wallet-menu/wallet-history.png"),
| },
| {
| urlPath: "/order/exchangeOrder",
| title: "duihuanlishi",
| iconPath: getImages("headIcon/wallet-menu/exchange.png"),
| },
| ];
|
|