| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/bookshelf/index",
- "style": {
- "navigationBarTitleText": "我的书架"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/novel/list", // 移动到tabBar页面组后面
- "style": {
- "navigationBarTitleText": "小说",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/novel/reader", // 添加阅读器页面配置
- "style": {
- "navigationBarTitleText": "阅读",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom", // 自定义导航栏
- "app-plus": {
- "titleNView": false // 禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/register",
- "style": {
- "navigationBarTitleText": "注册"
- }
- }
- ],
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabbar/home.png",
- "selectedIconPath": "/static/tabbar/home_selected.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/novel/list",
- "iconPath": "/static/tabbar/novel.png",
- "selectedIconPath": "/static/tabbar/novel_selected.png",
- "text": "小说"
- },
- {
- "pagePath": "pages/bookshelf/index",
- "iconPath": "/static/tabbar/bookshelf.png",
- "selectedIconPath": "/static/tabbar/bookshelf_selected.png",
- "text": "书架"
- },
- {
- "pagePath": "pages/me/index",
- "iconPath": "/static/tabbar/mine.png",
- "selectedIconPath": "/static/tabbar/mine_selected.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "哎呀免费小说",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F5F5F5",
- "app-plus": {
- "titleNView": false
- }
- }
- }
|