| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/novel/list",
- "style": {
- "navigationBarTitleText": "小说",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/bookshelf/index",
- "style": {
- "navigationBarTitleText": "我的书架"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/register",
- "style": {
- "navigationBarTitleText": "注册"
- }
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#2a5caa", // 使用主色调
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "height": "50px",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home_.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/novel/list",
- "text": "小说"
- },
- {
- "pagePath": "pages/bookshelf/index",
- "iconPath": "static/images/tabbar/work.png",
- "selectedIconPath": "static/images/tabbar/work_.png",
- "text": "书架"
- },
- {
- "pagePath": "pages/me/index",
- "iconPath": "static/images/tabbar/mine.png",
- "selectedIconPath": "static/images/tabbar/mine_.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "哎呀免费小说",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F5F5F5",
- "app-plus": {
- "titleNView": false // 禁用原生导航栏
- }
- }
- }
|