-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpages.json
More file actions
135 lines (134 loc) · 2.86 KB
/
pages.json
File metadata and controls
135 lines (134 loc) · 2.86 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"easycom": {
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
},
"subPackages": [
{
"root": "pages/users",
"pages": [
{
"path": "user_info/index",
"style": {
"navigationBarTitleText": "用户信息"
}
}
]
}
],
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/index",
"name":"首页",
"meta":{
"title": "首页"
},
"style": {
"app-plus": {
"titleNView": false // 去除导航栏
}
}
},
{
"path": "pages/other/index",
"name":"其它",
"meta":{
"title": "其它"
},
"style": {
"navigationBarTitleText": "其它",
"app-plus": {
"titleNView": {
"buttons": [{
"text": "\ue8a1",
"fontSrc": "/static/iconfont/iconfont.ttf",
"fontSize": "18",
"color": "#222"
}]
}
}
}
},
{
"path": "pages/user/index",
"name":"我的",
"meta":{
"title": "我的"
},
"style": {
"app-plus": {
"titleNView": false // 去除导航栏
}
}
},
{
"path": "pages/login/index",
"name":"登录",
"meta":{
"title": "登录"
},
"style": {
"app-plus": {
"titleNView": false // 去除导航栏
}
}
},
{
"path": "pages/login/register",
"name":"注册",
"meta":{
"title": "注册"
},
"style": {
"app-plus": {
"titleNView": false // 去除导航栏
}
}
},
{
"path": "pages/login/forget",
"name":"找回密码",
"meta":{
"title": "找回密码"
},
"style": {
"app-plus": {
"titleNView": false // 去除导航栏
}
}
}
],
"tabBar": {
"color":"#8a8a8a",
"selectedColor":"#198aff",
"borderStyle":"black",
"backgroundColor":"#ffffff",
"list": [
{
"pagePath":"pages/home/index",
"text":"首页",
"iconPath":"static/img/nav_home.png",
"selectedIconPath":"static/img/nav_home_active.png"
},
{
"pagePath":"pages/other/index",
"text":"其它",
"iconPath":"static/img/nav_other.png",
"selectedIconPath":"static/img/nav_other_active.png"
},
{
"pagePath":"pages/user/index",
"text":"我的",
"iconPath":"static/img/nav_user.png",
"selectedIconPath":"static/img/nav_user_active.png"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"usingComponents": {
}
}
}