-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
47 lines (47 loc) · 1.21 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
{
"pages": [
"pages/project/project",
"pages/component/component",
"pages/frame/frame",
"pages/codeSegment/codeSegment",
"pages/codeSegment/marquee/marquee"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "例子",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/project/project",
"iconPath": "images/tab.png",
"selectedIconPath": "images/tab_normal.png",
"text": "项目"
},
{
"pagePath": "pages/component/component",
"iconPath": "images/tab.png",
"selectedIconPath": "images/tab_normal.png",
"text": "组件"
},
{
"pagePath": "pages/codeSegment/codeSegment",
"iconPath": "images/tab.png",
"selectedIconPath": "images/tab_normal.png",
"text": "代码片段"
},
{
"pagePath": "pages/frame/frame",
"iconPath": "images/tab.png",
"selectedIconPath": "images/tab_normal.png",
"text": "框架"
}
]
}
}