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
| {
| "pages": [
| "pages/index/index",
| "pages/activity/detail",
| "pages/registration/registration",
| "pages/profile/profile",
| "pages/message/message",
| "pages/judge/review",
| "pages/video/video"
| ],
| "window": {
| "backgroundTextStyle": "light",
| "navigationBarBackgroundColor": "#007aff",
| "navigationBarTitleText": "蓉易创",
| "navigationBarTextStyle": "white",
| "backgroundColor": "#f5f5f5"
| },
|
| "tabBar": {
| "custom": true,
| "color": "#999999",
| "selectedColor": "#007aff",
| "backgroundColor": "#ffffff",
| "list": [
| {
| "pagePath": "pages/index/index",
| "text": "首页"
| },
| {
| "pagePath": "pages/message/message",
| "text": "消息"
| },
| {
| "pagePath": "pages/profile/profile",
| "text": "我的"
| }
| ]
| },
|
| "networkTimeout": {
| "request": 10000,
| "downloadFile": 10000
| },
| "debug": true,
| "permission": {
| "scope.userLocation": {
| "desc": "你的位置信息将用于小程序位置接口的效果展示"
| }
| },
| "requiredBackgroundModes": ["audio"],
| "sitemapLocation": "sitemap.json"
| }
|
|