-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathapp.json
58 lines (58 loc) · 1.42 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
{
"pages": [
"pages/index/index",
"pages/auth/login",
"pages/member/home",
"custom-tab-bar/index",
"components/course/course",
"pages/search/search",
"pages/course/list",
"pages/member/setting",
"pages/common/web",
"pages/member/order",
"pages/member/collect",
"pages/member/message",
"pages/member/promoCode",
"pages/member/credit1",
"pages/member/ib_withdraw",
"pages/member/withdraw_records",
"pages/role/index",
"pages/course/detail",
"pages/course/video",
"pages/order/index",
"pages/member/course"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "MeEdu",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"custom": true,
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
},
{
"pagePath": "pages/course/list",
"text": "课程"
},
{
"pagePath": "pages/member/home",
"text": "我的"
}
]
},
"usingComponents": {
"van-button": "@vant/weapp/button/index",
"van-image": "@vant/weapp/image/index",
"van-icon": "@vant/weapp/icon/index",
"van-tab": "@vant/weapp/tab/index",
"van-tabs": "@vant/weapp/tabs/index",
"meedu-course": "./components/course/course",
"meedu-none": "./components/none/none"
}
}