12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/bookshelf/bookshelf",
- "style": {
- "navigationBarTitleText": "书架",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/bookstore/bookstore",
- "style": {
- "navigationBarTitleText": "书城",
- "navigationStyle": "default",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/mine/mine",
- "navigationBarTitleText": "我的",
- "style": {
- "navigationStyle": "default",
- "app-plus": {
- "bounce": "none"
- }
- }
-
- },
- {
- "path": "pages/readbook/read",
- "style": {
- "navigationStyle": "default",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": true,
- "onReachBottomDistance": 10
- }
- },
- {
- "path": "pages/test/index",
- "style": {
- "navigationStyle": "default"
- }
- },
- {
- "path" : "pages/search/search",
- "style" : {
- "navigationBarTitleText": "搜索",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/bookdetails/bookdetails",
- "style" : {
- "navigationBarTitleText" : "书详情"
- }
- }
- ],
- "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": {}
-
- }
|