-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
39 lines (39 loc) · 975 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/index/index",
"pages/logs/logs",
"pages/edit/edit",
"pages/tongji/tongji",
"pages/detail/detail"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "星雨记账",
"navigationBarTextStyle":"black"
},
"tabBar": {
"borderStyle": "white",
"color": "#575757",
"selectedColor": "#32A3E0",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/index/index",
"text": "我的账单",
"iconPath": "tabImages/my.png",
"selectedIconPath": "tabImages/my-link.png"
},
{
"pagePath": "pages/edit/edit",
"text": "记一笔",
"iconPath": "tabImages/edit.png",
"selectedIconPath": "tabImages/edit-link.png"
},
{
"pagePath": "pages/tongji/tongji",
"text": "统计",
"iconPath": "tabImages/tj.png",
"selectedIconPath": "tabImages/tj-link.png"
}]
}
}