-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (36 loc) · 897 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
{
"pages": [
"pages/login/login",
"pages/index/index",
"pages/logs/logs",
"pages/loadPage/index",
"pages/loadPageMulti/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "微信小程序",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#333",
"selectedColor": "red",
"backgroundColor": "#CCCCCC",
"borderStyle": "black",
"position": "bottom",
"list": [
{
"pagePath": "pages/loadPage/index",
"text": "单张",
"iconPath": "assets/icon-square.png",
"selectedIconPath": "assets/icon-square.png"
},
{
"pagePath": "pages/loadPageMulti/index",
"text": "多张",
"iconPath": "assets/icon-grid.png",
"selectedIconPath": "assets/icon-grid.png"
}
]
}
}