-
Notifications
You must be signed in to change notification settings - Fork 272
/
app.json
executable file
·39 lines (39 loc) · 1023 Bytes
/
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
{
"pages":[
"pages/home/index",
"pages/cinema/index",
"pages/my/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"white",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "微票",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#F2f2f2",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/home/index",
"iconPath": "image/icon_normal.png",
"selectedIconPath": "image/icon_pressed.png",
"text": "上映"
}, {
"pagePath": "pages/cinema/index",
"iconPath": "image/icon_normal.png",
"selectedIconPath": "image/icon_pressed.png",
"text": "影院"
}, {
"pagePath": "pages/my/index",
"iconPath": "image/icon_normal.png",
"selectedIconPath": "image/icon_pressed.png",
"text": "我的"
}]
},
"debug": true
}