12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "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,
- "app-plus": {
- "titleNView": false,
- "autoBackButton": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F7F7F7"
- },
- "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": {}
- }
|