-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpages.json
139 lines (132 loc) · 2.96 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
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
136
137
138
139
{
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
"pages": [{
"path": "pages/tabbar/index/index",
"style": {
"app-plus": {
"titleNView": {
// 设置透明式导航栏
"type": "transparent"
// "titleIcon": "/static/logo.png",
// "titleIconRadius": "2px"
}
}
}
},
{
"path": "pages/tabbar/service/service",
"style": {
"navigationBarTitleText": "服务",
"enablePullDownRefresh": false
}
},
{
"path": "pages/tabbar/message/message",
"style": {
"navigationBarTitleText": "消息",
"enablePullDownRefresh": false
}
},
{
"path": "pages/tabbar/mine/mine",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
// App端扩展配置
"app-plus": {
// 原生导航栏配置参数
"titleNView": {
"buttons": [{
"type": "menu"
}]
}
}
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
},
{
"path": "pages/setting/setting",
"style": {
"navigationBarTitleText": "应用设置",
"enablePullDownRefresh": false
}
},
{
"path": "pages/pdfview/pdfview",
"style": {
"navigationBarTitleText": "PDF",
"enablePullDownRefresh": false
}
},
{
"path": "pages/tabbar/test/test",
"style": {
"navigationBarTitleText": "组件测试界面",
"enablePullDownRefresh": false
}
},
{
"path": "pages/personalInformation/personalInformation",
"style": {
"navigationBarTitleText": "个人信息",
"enablePullDownRefresh": false
}
},
{
"path": "pages/about/about",
"style": {
"navigationBarTitleText": "关于软件",
"enablePullDownRefresh": false,
// 禁止滑动页面
"disableScroll": true
}
}
],
// 全局样式
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "Breze",
"navigationBarBackgroundColor": "#409EFF",
"backgroundColor": "#409EFF"
},
// 底部导航
"tabBar": {
"borderStyle": "white",
"backgroundColor": "#EBEEF5",
"color": "#8F8F94",
"selectedColor": "#409EFF",
"height": "60px",
"list": [{
"pagePath": "pages/tabbar/index/index",
"iconPath": "static/img/tabbar/index.png",
"selectedIconPath": "static/img/tabbar/indexactive.png",
"text": "首页"
},
{
"pagePath": "pages/tabbar/service/service",
"iconPath": "static/img/tabbar/service.png",
"selectedIconPath": "static/img/tabbar/serviceactive.png",
"text": "服务"
},
{
"pagePath": "pages/tabbar/message/message",
"iconPath": "static/img/tabbar/news.png",
"selectedIconPath": "static/img/tabbar/newsactive.png",
"text": "消息"
},
{
"pagePath": "pages/tabbar/mine/mine",
"iconPath": "static/img/tabbar/mine.png",
"selectedIconPath": "static/img/tabbar/mineactive.png",
"text": "我的"
}
]
},
"uniIdRouter": {}
}