-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathapp.json
43 lines (43 loc) · 1.06 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
{
"pages" : [
"pages/index/index",
"pages/page/index",
"pages/form/index",
"pages/error/index",
"pages/logs/logs"
],
"window" : {
"navigationBarBackgroundColor": "#479de6",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "kkk",
"backgroundColor": "#f8f8f8",
"backgroundTextStyle": "dark",
"enablePullDownRefresh":"true"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#479de6",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "assets/images/icon_tabbar.png",
"selectedIconPath": "assets/images/logo.png",
"text": "首页"
},
{
"pagePath": "pages/page/index",
"iconPath": "assets/images/icon_tabbar.png",
"selectedIconPath": "assets/images/logo.png",
"text": "内页"
},
{
"pagePath": "pages/form/index",
"iconPath": "assets/images/icon_tabbar.png",
"selectedIconPath": "assets/images/logo.png",
"text": "表单页"
}
]
}
}