├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pages.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/bookshelf/index",
  12. "style": {
  13. "navigationBarTitleText": "我的书架"
  14. }
  15. },
  16. {
  17. "path": "pages/me/index",
  18. "style": {
  19. "navigationBarTitleText": "个人中心"
  20. }
  21. },
  22. {
  23. "path": "pages/novel/list", // 移动到tabBar页面组后面
  24. "style": {
  25. "navigationBarTitleText": "小说",
  26. "enablePullDownRefresh": false
  27. }
  28. },
  29. {
  30. "path": "pages/novel/reader", // 添加阅读器页面配置
  31. "style": {
  32. "navigationBarTitleText": "阅读",
  33. "enablePullDownRefresh": false,
  34. "navigationStyle": "custom", // 自定义导航栏
  35. "app-plus": {
  36. "titleNView": false // 禁用原生导航栏
  37. }
  38. }
  39. },
  40. {
  41. "path": "pages/login",
  42. "style": {
  43. "navigationBarTitleText": "登录"
  44. }
  45. },
  46. {
  47. "path": "pages/register",
  48. "style": {
  49. "navigationBarTitleText": "注册"
  50. }
  51. }
  52. ],
  53. "tabBar": {
  54. "list": [
  55. {
  56. "pagePath": "pages/index/index",
  57. "iconPath": "/static/tabbar/home.png",
  58. "selectedIconPath": "/static/tabbar/home_selected.png",
  59. "text": "首页"
  60. },
  61. {
  62. "pagePath": "pages/novel/list",
  63. "iconPath": "/static/tabbar/novel.png",
  64. "selectedIconPath": "/static/tabbar/novel_selected.png",
  65. "text": "小说"
  66. },
  67. {
  68. "pagePath": "pages/bookshelf/index",
  69. "iconPath": "/static/tabbar/bookshelf.png",
  70. "selectedIconPath": "/static/tabbar/bookshelf_selected.png",
  71. "text": "书架"
  72. },
  73. {
  74. "pagePath": "pages/me/index",
  75. "iconPath": "/static/tabbar/mine.png",
  76. "selectedIconPath": "/static/tabbar/mine_selected.png",
  77. "text": "我的"
  78. }
  79. ]
  80. },
  81. "globalStyle": {
  82. "navigationBarTextStyle": "black",
  83. "navigationBarTitleText": "哎呀免费小说",
  84. "navigationBarBackgroundColor": "#FFFFFF",
  85. "backgroundColor": "#F5F5F5",
  86. "app-plus": {
  87. "titleNView": false
  88. }
  89. }
  90. }