-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.json
More file actions
76 lines (76 loc) · 2.07 KB
/
pages.json
File metadata and controls
76 lines (76 loc) · 2.07 KB
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
{
"pages": [
{
"path": "pages/scan/index",
"style": {
"navigationBarTitleText": "BLE 调试助手",
"navigationBarBackgroundColor": "#0A0F1C",
"navigationBarTextStyle": "white",
"backgroundColor": "#0A0F1C",
"enablePullDownRefresh": false
}
},
{
"path": "pages/device/index",
"style": {
"navigationBarTitleText": "设备服务",
"navigationBarBackgroundColor": "#0A0F1C",
"navigationBarTextStyle": "white",
"backgroundColor": "#0A0F1C",
"enablePullDownRefresh": false
}
},
{
"path": "pages/debug/index",
"style": {
"navigationBarTitleText": "BLE 通信调试",
"navigationBarBackgroundColor": "#0A0F1C",
"navigationBarTextStyle": "white",
"backgroundColor": "#0A0F1C",
"enablePullDownRefresh": false
}
},
{
"path": "pages/protocol/index",
"style": {
"navigationBarTitleText": "协议插件",
"navigationBarBackgroundColor": "#0A0F1C",
"navigationBarTextStyle": "white",
"backgroundColor": "#0A0F1C",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "BLE 调试助手",
"navigationBarBackgroundColor": "#0A0F1C",
"backgroundColor": "#0A0F1C"
},
"tabBar": {
"color": "#6B7280",
"selectedColor": "#00F5FF",
"backgroundColor": "#111827",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/scan/index",
"text": "扫描",
"iconPath": "static/scanning_white.png",
"selectedIconPath": "static/scanning_white.png"
},
{
"pagePath": "pages/device/index",
"text": "设备",
"iconPath": "static/device_white.png",
"selectedIconPath": "static/device_white.png"
},
{
"pagePath": "pages/debug/index",
"text": "调试",
"iconPath": "static/debugging_white.png",
"selectedIconPath": "static/debugging_white.png"
}
]
}
}