forked from SuperKieran/weapp-artand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.01 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
{
"pages":[
"pages/index/index",
"pages/work-detail/work-detail",
"pages/discover/discover",
"pages/setting/setting",
"pages/login/login",
"pages/register/register",
"pages/qrcode/qrcode"
],
"window":{
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "white",
"navigationBarTitleText": "Artand",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "white",
"backgroundColor": "rgba(0,0,0,0.90)",
"borderStyle": "black",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "images/bar_home_black.png",
"selectedIconPath": "images/bar_home.png"
}, {
"pagePath": "pages/discover/discover",
"iconPath": "images/bar_explore_black.png",
"selectedIconPath": "images/bar_explore.png"
}, {
"pagePath": "pages/setting/setting",
"iconPath": "images/bar_mine_black.png",
"selectedIconPath": "images/bar_mine.png"
}]
},
"debug": true
}