-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpages.json
85 lines (85 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/tabbar/index/index",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app"
}
}, {
"path": "pages/tabbar/follow/follow",
"style": {
"navigationBarTitleText": "关注"
}
}, {
"path": "pages/tabbar/my/my",
"style": {
"navigationBarTitleText": "个人中心"
}
}, {
"path": "pages/home-search/home-search",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app"
}
}, {
"path": "pages/home-label/home-label",
"style": {
"navigationBarTitleText": "标签管理"
}
}, {
"path": "pages/home-detail/home-detail",
"style": {
"navigationBarTitleText": "详情"
}
}, {
"path": "pages/detail-comments/detail-comments",
"style": {
"navigationBarTitleText": "评论列表"
}
}, {
"path": "pages/my-article/my-article",
"style": {
"navigationBarTitleText": "我的文章"
}
}
,{
"path" : "pages/feedback/feedback",
"style" : {
"navigationBarTitleText": "意见反馈"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F07373"
},
"tabBar": {
"color": "#666",
"selectedColor": "#f07373",
"backgroundColor": "white",
"list": [{
"pagePath": "pages/tabbar/index/index",
"iconPath": "static/home.png",
"selectedIconPath": "static/home-active.png",
"text": "首页"
},
{
"pagePath": "pages/tabbar/follow/follow",
"iconPath": "static/follow.png",
"selectedIconPath": "static/follow-active.png",
"text": "关注"
},
{
"pagePath": "pages/tabbar/my/my",
"iconPath": "static/my.png",
"selectedIconPath": "static/my-active.png",
"text": "我的"
}
]
}
}