-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
48 lines (48 loc) · 1.08 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
{
"pages": [
"pages/index/index",
"pages/mine/mine",
"pages/detail/detail",
"pages/doc/doc",
"pages/doclist/doclist",
"pages/api/api"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "麦芽Lite",
"navigationBarTextStyle": "black"
},
"plugins": {
"sdkPlugin": {
"version": "1.13.0",
"provider": "wxc6b86e382a1e3294"
}
},
"tabBar": {
"selectedColor": "#52A9FF",
"color": "#bfbfbf",
"backgroundColor": "#fff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "原创",
"iconPath": "img/index_un.png",
"selectedIconPath": "img/index_in.png"
},
{
"pagePath": "pages/api/api",
"text": "查API",
"iconPath": "img/doc_un.png",
"selectedIconPath": "img/doc_in.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "img/mine_un.png",
"selectedIconPath": "img/mine_in.png"
}
]
}
}