-
Notifications
You must be signed in to change notification settings - Fork 158
/
app.json
133 lines (133 loc) · 3.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"pages": [
"pages/index/index",
"pages/extend/extend",
"pages/my/my",
"pages/maps/maps",
"pages/weather/weather",
"pages/longlat/longlat",
"pages/selectCity/selectCity",
"pages/picker/picker",
"pages/picker-view/picker-view",
"pages/indexList/indexList",
"pages/qrcode/qrcode",
"pages/drawer/drawer",
"pages/swipe-action/swipe-action",
"pages/navbar-1/navbar-1",
"pages/navbar-2/navbar-2",
"pages/news/news",
"pages/product/product",
"pages/basic/basic",
"pages/location/location",
"pages/about/about",
"pages/login/login",
"pages/log/log"
],
"subpackages": [
{
"root": "pages/basic-view/",
"pages": [
"color/color",
"button/button",
"flex/flex",
"tag/tag",
"badge/badge",
"load/load",
"icon/icon",
"list/list",
"card/card",
"grid/grid",
"footer/footer",
"other/other",
"doc/doc"
]
},
{
"root": "pages/extend-view/",
"pages": [
"msgtips/msgtips",
"sticky/sticky",
"keyboard/keyboard",
"lockscreen/lockscreen",
"timeaxis/timeaxis",
"rollingNews/rollingNews",
"popup/popup",
"luckdraw/luckdraw",
"template/template",
"news-search/news-search",
"actionsheet/actionsheet",
"msgList/msgList",
"friendsList/friendsList",
"numberbox/numberbox",
"rate/rate",
"modal/modal",
"carousel/carousel",
"countdown/countdown",
"divider/divider",
"goTop/goTop",
"button/button",
"alert/alert",
"toast/toast",
"formValidation/formValidation",
"tips/tips",
"picker-dateTime/picker-dateTime",
"fab/fab",
"tabbar/tabbar",
"tabs/tabs",
"collapse/collapse",
"upload/upload",
"skeleton/skeleton",
"request/request",
"friendsList-2/friendsList-2",
"clipboard/clipboard",
"common/common"
]
}
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#5677FC",
"navigationBarTitleText": "Thor UI",
"navigationBarTextStyle": "white",
"backgroundColorTop": "#fafafa",
"backgroundColorBottom": "#fafafa"
},
"tabBar": {
"color": "#666666",
"selectedColor": "#5677FC",
"backgroundColor": "#FFFFFF",
"list": [
{
"pagePath": "pages/index/index",
"text": "code",
"iconPath": "static/images/tabbar/code_gray.png",
"selectedIconPath": "static/images/tabbar/code_active.png"
},
{
"pagePath": "pages/extend/extend",
"text": "extend",
"iconPath": "static/images/tabbar/extend_gray.png",
"selectedIconPath": "static/images/tabbar/extend_active.png"
},
{
"pagePath": "pages/my/my",
"text": "thor",
"iconPath": "static/images/tabbar/thor_gray.png",
"selectedIconPath": "static/images/tabbar/thor_active.png"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于定位效果展示"
}
},
"debug": true,
"sitemapLocation": "sitemap.json"
}