123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
-
- }
- },
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
-
- },
-
- {
- "path" : "pages/login_two/login_two",
- "style" :
- {
- "navigationBarTitleText": "手机号登录",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/login_three/login_three",
- "style" :
- {
- "navigationBarTitleText": "找回密码",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/resource/resource",
- "style" :
- {
- "navigationBarTitleText": "资源库",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/activityPage/activityPage",
- "style" :
- {
- "navigationBarTitleText": "活动页",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/message/message",
- "style" :
- {
- "navigationBarTitleText": "消息",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "list": [
-
- {
- "pagePath": "pages/index/index",
- "text": "首页"
- // "iconPath": "static/img/home.png",
- // "selectedIconPath": "static/img/home_1.png"
- },
- {
- "pagePath": "pages/resource/resource",
- "text": "资源库"
- // "iconPath": "static/img/home.png",
- // "selectedIconPath": "static/img/home_1.png"
- },
- {
- "pagePath": "pages/activityPage/activityPage",
- "text": "活动"
- // "iconPath": "static/img/home.png",
- // "selectedIconPath": "static/img/home_1.png"
- },
- {
- "pagePath": "pages/message/message",
- "text": "消息"
- // "iconPath": "static/img/home.png",
- // "selectedIconPath": "static/img/home_1.png"
- },
- {
- "pagePath": "pages/mine/mine",
- "text": "我的"
- // "iconPath": "static/img/home.png",
- // "selectedIconPath": "static/img/home_1.png"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationBarTitleCentered": true
- },
- "uniIdRouter": {}
- }
|