-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (45 loc) · 1.17 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/statistics/statistics",
"pages/profile/profile",
"pages/detail/detail"
],
"window":{
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#09bb07",
"navigationBarTitleText": "记账本",
"navigationBarTextStyle": "white"
},
"tabBar": {
"custom": true,
"list": [
{
"pagePath": "pages/index/index",
"text": "明细",
"iconPath": "/assets/imgs/tabBar/account.png",
"selectedIconPath": "/assets/imgs/tabBar/account-fill.png"
},
{
"pagePath": "pages/statistics/statistics",
"text": "统计",
"iconPath": "/assets/imgs/tabBar/statistics.png",
"selectedIconPath": "/assets/imgs/tabBar/statistics-fill.png"
},
{
"pagePath": "pages/profile/profile",
"text": "我",
"iconPath": "/assets/imgs/tabBar/profile.png",
"selectedIconPath": "/assets/imgs/tabBar/profile-fill.png"
}
]
},
"useExtendedLib": {
"weui": true
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"usingComponents": {
"mp-icon": "/miniprogram_npm/weui-miniprogram/icon/icon"
}
}