-
Notifications
You must be signed in to change notification settings - Fork 2
/
pages.json
72 lines (72 loc) · 1.69 KB
/
pages.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
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [{
"path": "pages/news/home",
"style": {
"navigationStyle": "custom",
"app-plus": {
"bounce": "none" // 取消iOS回弹, 避免和下拉刷新冲突 (小程序无法取消)
}
}
}, {
"path": "pages/find/find",
"style": {
"navigationStyle": "custom"
}
}, {
"path": "pages/my/my",
"style": {
"navigationStyle": "custom"
}
}, {
"path": "pages/news/list",
"style": {
"app-plus": {
"bounce": "none" // 取消iOS回弹, 避免和下拉刷新冲突 (小程序无法取消)
}
}
}, {
"path": "pages/news/detail",
"style": {
"app-plus": {
"bounce": "none" // 取消iOS回弹, 避免和下拉刷新冲突 (小程序无法取消)
}
}
}, {
"path": "pages/news/publish",
"style": {
"navigationBarTitleText": "投稿"
}
}],
"globalStyle": {
"pageOrientation": "portrait",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#D81E06",
"backgroundColor": "#FFFFFF",
"borderStyle": "white",
"list": [{
"pagePath": "pages/news/home",
"iconPath": "static/tabbar/tabbar-home-gray.png",
"selectedIconPath": "static/tabbar/tabbar-home-red.png",
"text": "资讯"
}, {
"pagePath": "pages/find/find",
"iconPath": "static/tabbar/tabbar-find-gray.png",
"selectedIconPath": "static/tabbar/tabbar-find-red.png",
"text": "发现"
}, {
"pagePath": "pages/my/my",
"iconPath": "static/tabbar/tabbar-my-gray.png",
"selectedIconPath": "static/tabbar/tabbar-my-red.png",
"text": "我的"
}]
}
}