-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpages.json
81 lines (80 loc) · 1.85 KB
/
pages.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"pages": [{
"path": "pages/app/bookkeeping/bookkeeping",
"style": {}
},
{
"path": "pages/user/login",
"style": {
"navigationBarTitleText": "登录",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/app/index",
"style": {
"navigationBarTitleText": "应用",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "我的",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/user/about",
"style": {
"navigationBarTitleText": "关于",
"navigationBarTextStyle": "black"
}
}, {
"path": "pages/app/statistics/statistics",
"style": {}
}, {
"path": "pages/app/detailed/detailed",
"style": {}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "记账本",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"mp-alipay": {
"titleBarColor": "#FFFFFF"
}
},
"tabBar": {
"color": "#333333",
"backgroundColor": "#F8F8F8",
"selectedColor": "#FFB6C1",
"list": [{
"pagePath": "pages/app/bookkeeping/bookkeeping",
"text": "记账本",
"iconPath": "static/images/tabbar/bookkeeping.png",
"selectedIconPath": "static/images/tabbar/bookkeeping-act.png"
},
{
"pagePath": "pages/app/statistics/statistics",
"text": "统计",
"iconPath": "static/images/tabbar/statistics.png",
"selectedIconPath": "static/images/tabbar/statistics-act.png"
},
{
"pagePath": "pages/app/detailed/detailed",
"text": "明细",
"iconPath": "static/images/tabbar/detailed.png",
"selectedIconPath": "static/images/tabbar/detailed-act.png"
},
{
"pagePath": "pages/user/index",
"text": "我的",
"iconPath": "static/images/tabbar/user.png",
"selectedIconPath": "static/images/tabbar/user-act.png"
}
]
}
}