123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle":"custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": true,
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path" : "pages/login/login",
- "style" : {
- "navigationStyle":"custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path" : "pages/chat/chat",
- "style" :
- {
- "navigationBarTitleText": "消息",
- "enablePullDownRefresh": false,
- "app-plus": {
- "autoBackButton": false,
- "titleNView": true
- }
- }
- },
- {
- "path" : "pages/personalCenter/personalCenter",
- "style" :
- {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#8dccff",
- "app-plus": {
- "autoBackButton": false,
- "titleNView": true
- }
- }
- },
- {
- "path" : "pages/chatDetail/chatDetail",
- "style" :
- {
- "navigationBarTitleText" : "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/register/register",
- "style" : {
- "navigationStyle":"custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path" : "pages/forget/forget",
- "style" : {
- "navigationStyle":"custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "app-plus": {
- "titleNView": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F7F7F7",
- "navigationBarTitleFontWeight": "bold"
- },
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "主页",
- "iconPath": "static/tabbar-icon/home.png",
- "selectedIconPath": "static/tabbar-icon/home-fill.png"
- },
- {
- "pagePath": "pages/chat/chat",
- "text": "消息",
- "iconPath": "static/tabbar-icon/comment.png",
- "selectedIconPath": "static/tabbar-icon/comment-filling.png"
- },
- {
- "pagePath": "pages/personalCenter/personalCenter",
- "text": "我的",
- "iconPath": "static/tabbar-icon/user-line.png",
- "selectedIconPath": "static/tabbar-icon/user-s.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|