-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
74 lines (74 loc) · 2.04 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
{
"pages": [
"pages/home/home",
"pages/report/report",
"pages/customer/customer",
"pages/place/place",
"pages/detail/detail",
"pages/user/user",
"pages/logs/logs",
"pages/insertGoods/insertGoods",
"pages/login/login",
"pages/settingpage/setting",
"pages/addUser/report",
"pages/reportDetail/reportDetail",
"pages/signUp/signUp",
"pages/selectBuilding/selectBuilding",
"pages/selectUser/selectUser",
"pages/user-update/user-update",
"pages/houses/houses",
"pages/signup-users/signup-users",
"pages/web-view/web-view"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"tabBar": {
"custom": false,
"backgroundColor": "#fff",
"selectedColor": "#1989fa",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "src/tabBarIcon/home.png",
"selectedIconPath": "src/tabBarIcon/_home.png"
},
{
"pagePath": "pages/place/place",
"text": "报备",
"iconPath": "src/tabBarIcon/report.png",
"selectedIconPath": "src/tabBarIcon/_report.png"
},
{
"pagePath": "pages/customer/customer",
"text": "客户",
"iconPath": "src/tabBarIcon/custom.png",
"selectedIconPath": "src/tabBarIcon/_custom.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "src/tabBarIcon/mine.png",
"selectedIconPath": "src/tabBarIcon/_mine.png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于展示附件房产服务"
}
},
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"entryPagePath": "pages/home/home",
"backgroundColorTop": "#f2f2f2",
"backgroundColorBottom": "#f2f2f2",
"usingComponents": {
"van-button": "@vant/weapp/button/index",
"van-image": "@vant/weapp/image/index"
}
}