-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
35 lines (35 loc) · 873 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/language/language"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "曹操翻译",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color":"#333",
"selectedColor": "#1493d8",
"backgroundColor":"#fff",
"position":"bottom",
"list": [
{
"pagePath": "pages/index/index",
"text": "翻译",
"selectedIconPath": "static/images/translate_active.png",
"iconPath": "static/images/translate.png"
},
{
"pagePath": "pages/logs/logs",
"text": "历史",
"selectedIconPath": "static/images/log_active.png",
"iconPath": "static/images/log.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}