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
| const configData = {
| leftMenu: [
| {
| id: "m1",
| image: "normal_u3.svg",
| router: "mapChart"
| },
| {
| id: "m2",
| image: "normal_u4.svg"
| },
| {
| id: "m3",
| image: "normal_u5.svg"
| },
| {
| id: "m4",
| image: "normal_u6.svg"
| }
| ],
| chartHeaderMenu:[
| {
| id: "c1",
| image: "normal_u58.svg",
| },
| {
| id: "c2",
| image: "normal_u56.svg"
| }
|
| ],
| mapHeadMenuLeft:[
| {
| id: "a1",
| image: "normal_u69.svg",
| },
| {
| id: "a2",
| image: "normal_u70.svg"
| }, {
| id: "q3",
| image: "normal_u68.svg"
| },
| ],
| mapHeadMenuRight:[
| {
| id: "a1",
| image: "normal_u66.svg",
| },
| {
| id: "a2",
| image: "normal_u67.svg"
| }, {
| id: "q3",
| image: "normal_u68.svg"
| },
|
| ]
| };
| export default configData;
|
|