1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "pages": [
- "pages/bookshelf/bookshelf",
- "pages/bookstore/bookstore",
- "pages/mine/mine",
- "pages/readbook/read",
- "pages/test/index",
- "pages/search/search"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "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"
- },
- "usingComponents": {}
- }
|