123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/bookshelf/bookshelf",
- "style": {
- "navigationBarTitleText": "书架",
- // #ifdef MP-WEIXIN
- "navigationStyle": "custom",
- // #endif
- // #ifdef H5
- "navigationStyle": "custom",
- // #endif
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/bookstore/bookstore",
- "style": {
- "navigationBarTitleText": "书城",
- // #ifdef MP-WEIXIN
- "navigationStyle": "custom",
- // #endif
- // #ifdef H5
- "navigationStyle": "custom",
- // #endif
- "enablePullDownRefresh": true,
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationStyle": "default",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path": "pages/test/index",
- "style": {
- "navigationStyle": "default"
- }
- }
- ],
- "subPackages":[
- {
- "root": "pagesA",
- "pages": [
- {
- "path" : "bookdetails/bookdetails",
- "style" : {
- "navigationBarTitleText" : "书详情"
- }
- },
- {
- "path": "readbook/read",
- "style": {
- "navigationStyle": "default",
- "navigationBarTitleText": ""
- }
- },
- {
- "path" : "search/search",
- "style" : {
- "navigationBarTitleText": "搜索",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "recharge/rechargeCoin",
- "style" :
- {
- "navigationBarTitleText" : "充值书币"
- }
- },
- {
- "path" : "recharge/rechargeVIP",
- "style" :
- {
- "navigationBarTitleText" : "充值VIP"
- }
- },
- {
- "path" : "tradingRecord/tradingRecord",
- "style" :
- {
- "navigationBarTitleText" : "交易记录",
- "navigationStyle": "default",
- "app-plus": {
- "bounce": "none"
- }
- }
- },
- {
- "path" : "seeMore/seeMore",
- "style" :
- {
- "navigationBarTitleText" : "查看更多"
- }
- },
- {
- "path" : "aboutMine/aboutMine",
- "style" :
- {
- "navigationBarTitleText" : "关于我们"
- }
- },
- {
- "path" : "webview/webview",
- "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": "#2c2c2c",
- "selectedColor": "#2c2c2c"
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
-
- }
|