-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
45 lines (45 loc) · 1.14 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/posts/show",
"pages/users/show",
"pages/users/register",
"pages/posts/create",
"pages/users/login",
"pages/demo/demo"
],
"window": {
"navigationBarTitleText": "基于wp的小程序",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true,
"backgroundTextStyle": "dark",
"backgroundColor": "#ededed"
},
"tabBar": {
"selectedColor": "#000000",
"borderStyle": "white",
"backgroundColor": "#ededed",
"list": [
{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "assets/icons/home.png",
"selectedIconPath": "assets/icons/home-active.png"
},
{
"text": "创作",
"pagePath": "pages/posts/create",
"iconPath": "assets/icons/add.png",
"selectedIconPath": "assets/icons/add-active.png"
},
{
"text": "我",
"pagePath": "pages/users/show",
"iconPath": "assets/icons/face.png",
"selectedIconPath": "assets/icons/face-active.png"
}
]
},
"debug": false
}