forked from TeamStuQ/wxapp-skillmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 918 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
{
"pages":[
"pages/skill-list/skill-list",
"pages/about/about",
"pages/skill/skill",
"pages/test/test",
"pages/index/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"backgroundColor": "#000000",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "技能图谱",
"navigationBarTextStyle":"black"
},
"tabBar": {
"position": "bottom",
"list": [{
"pagePath": "pages/skill-list/skill-list",
"text": "技能图谱",
"iconPath": "resources/icon-list.png",
"selectedIconPath": "resources/icon-list-select.png"
}, {
"pagePath": "pages/about/about",
"text": "关于",
"iconPath": "resources/icon-about.png",
"selectedIconPath": "resources/icon-about-select.png"
}]
},
"debug": true
}