forked from Shaman05/wxCharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.07 KB
/
app.json
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
{
"pages": [
"pages/index/index",
"pages/ts/ts",
"pages/kl/kl",
"pages/setting/setting"
],
"window": {
"navigationBarBackgroundColor": "#262834",
"navigationBarTitleText": "wxChart-demo",
"navigationBarTextStyle": "white",
"backgroundColor": "#1C1F27"
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "Home",
"iconPath": "images/home0.png",
"selectedIconPath": "images/home.png"
},
{
"pagePath": "pages/ts/ts",
"text": "分时图",
"iconPath": "images/ts0.png",
"selectedIconPath": "images/ts.png"
},
{
"pagePath": "pages/kl/kl",
"text": "K线",
"iconPath": "images/kl0.png",
"selectedIconPath": "images/kl.png"
},
{
"pagePath": "pages/setting/setting",
"text": "设置",
"iconPath": "images/setting0.png",
"selectedIconPath": "images/setting.png"
}
],
"color": "#c2c4d0",
"selectedColor": "#3483e9",
"backgroundColor": "#252934"
}
}