1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/bookshelf/bookshelf",
- "style": {
- "navigationBarTitleText": "书架",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/bookstore/bookstore",
- "style": {
- "navigationBarTitleText": "书城",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/readbook/read",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "onReachBottomDistance": 10
- }
- },
- {
- "path": "pages/test/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path" : "pages/search/search",
- "style" : {
- "navigationBarTitleText": "搜索",
- "enablePullDownRefresh" : false
- }
- }
- ],
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/bookshelf/bookshelf",
- "text": "书架",
- "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
- "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
- },
- {
- "pagePath": "pages/bookstore/bookstore",
- "text": "书城",
- "iconPath": "/static/imgs/tabBar/bookstore_0.png",
- "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
- },
- {
- "pagePath": "pages/mine/mine",
- "text": "我的",
- "iconPath": "/static/imgs/tabBar/mine_0.png",
- "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
- }
- ],
- "color": "#707070",
- "selectedColor": "#2979ff"
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|