-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
42 lines (42 loc) · 1.13 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
{
"pages": [
"pages/lock/lock",
"pages/index/index",
"pages/person/person",
"pages/door/door"
],
"tabBar": {
"custom": true,
"color": "#666666",
"selectedColor": "#FF5F15",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/lock/lock",
"text": "门禁"
},
{
"pagePath": "pages/person/person",
"text": "我的"
}
]
},
"usingComponents": {
"t-button": "tdesign-miniprogram/button/button",
"t-icon": "tdesign-miniprogram/icon/icon",
"custom-tab-bar": "./custom-tab-bar/index"
},
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#0052d9",
"navigationBarTitleText": "晃晃开门",
"navigationBarTextStyle": "white"
},
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}