-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
51 lines (51 loc) · 1.39 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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/Order/Order",
"pages/user/user",
"pages/test/scroll"
],
"tabBar": {
"color": "#000",
"backgroundColor": "#fff",
"borderStyle": "white",
"selectedColor": "#1296db",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/tabBar/home.png",
"selectedIconPath": "images/tabBar/homeSelected.png"
},
{
"pagePath": "pages/test/scroll",
"text": "订单",
"iconPath": "images/tabBar/orderedlist.png",
"selectedIconPath": "images/tabBar/orderedlistSelected.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/tabBar/user.png",
"selectedIconPath": "images/tabBar/userSelected.png"
}
]
},
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black",
"navigationStyle": "default",
"navigationBarTitleText": "myIot",
"enablePullDownRefresh": true
},
"usingComponents": {
"navigationBar": "components/navigationBar/navigayionBar",
"scroll": "components/scroll/scroll",
"containter": "components/containter/containter",
"topSwiper": "components/swiper/swiper",
"myPanel": "components/panel/panel"
},
"sitemapLocation": "sitemap.json"
}