-
Notifications
You must be signed in to change notification settings - Fork 264
/
app.json
92 lines (92 loc) · 2.98 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
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
82
83
84
85
86
87
88
89
90
91
92
{
"pages": [
"pages/index/index",
"pages/register/register",
"pages/register/children/result",
"pages/home/home",
"pages/list/book",
"pages/list/booklist",
"pages/booklist/booklist",
"pages/cart/cart",
"pages/profile/profile",
"pages/profile/children/children/personal-information-modify",
"pages/book-detail/book-detail",
"pages/cart/children/help",
"pages/cart/children/qrcode",
"pages/booklist/children/modify",
"pages/booklist/children/booklist-detail",
"pages/booklist/children/children/modify",
"pages/book-detail/children/add",
"pages/book-detail/children/library-list",
"pages/book-detail/children/review",
"pages/profile/children/personal-information",
"pages/book-detail/children/order",
"pages/book-detail/children/children/library-detail",
"pages/book-detail/children/children/result",
"pages/profile/children/qrcode",
"pages/profile/children/order-ongoing",
"pages/profile/children/order-history",
"pages/profile/children/review",
"pages/profile/children/children/order-detail",
"pages/home/children/advanced-search",
"pages/home/children/classification",
"pages/profile/children/about",
"component-demos/index/index",
"component-demos/async-button/index",
"component-demos/async-switch/index",
"component-demos/collapse/index",
"component-demos/load-more/index",
"component-demos/no-data/index",
"component-demos/panel/index",
"component-demos/popup/index",
"component-demos/rate/index",
"component-demos/search-bar/index",
"component-demos/send-code/index",
"component-demos/spinner/index",
"component-demos/sticky/index",
"component-demos/tab-bar/index",
"component-demos/toast/index",
"component-demos/toptip/index",
"component-demos/search-bar/mask"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "white"
},
"tabBar": {
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "images/icon_home_line.png",
"selectedIconPath": "images/icon_home_fill.png",
"selectedColor": "#09BB07"
},
{
"pagePath": "pages/booklist/booklist",
"text": "书单",
"color": "#ddd",
"selectedColor": "#09BB07",
"iconPath": "images/icon_booklist_line.png",
"selectedIconPath": "images/icon_booklist_fill.png"
},
{
"pagePath": "pages/cart/cart",
"text": "借书栏",
"iconPath": "images/icon_cart_line.png",
"selectedIconPath": "images/icon_cart_fill.png",
"selectedColor": "#09BB07"
},
{
"pagePath": "pages/profile/profile",
"text": "我的",
"iconPath": "images/icon_me_line.png",
"selectedIconPath": "images/icon_me_fill.png",
"selectedColor": "#09BB07"
}
]
},
"sitemapLocation": "sitemap.json"
}