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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/novel/list",
  12. "style": {
  13. "navigationBarTitleText": "小说",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path": "pages/bookshelf/index",
  19. "style": {
  20. "navigationBarTitleText": "我的书架"
  21. }
  22. },
  23. {
  24. "path": "pages/me/index",
  25. "style": {
  26. "navigationBarTitleText": "个人中心"
  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/index",
  42. "style": {
  43. "navigationBarTitleText": "登录",
  44. "navigationStyle": "custom"
  45. }
  46. },
  47. {
  48. "path": "pages/register/index",
  49. "style": {
  50. "navigationBarTitleText": "注册"
  51. }
  52. }
  53. ],
  54. "tabBar": {
  55. "color": "#7a7e83",
  56. "selectedColor": "#3a8ee6",
  57. "backgroundColor": "#ffffff",
  58. "borderStyle": "black",
  59. "height": "120rpx",
  60. "list": [
  61. {
  62. "pagePath": "pages/index/index",
  63. "iconPath": "/static/tabbar/home.png",
  64. "selectedIconPath": "/static/tabbar/home_selected.png",
  65. "text": "首页"
  66. },
  67. {
  68. "pagePath": "pages/novel/list",
  69. "iconPath": "/static/tabbar/novel.png",
  70. "selectedIconPath": "/static/tabbar/novel_selected.png",
  71. "text": "小说"
  72. },
  73. {
  74. "pagePath": "pages/bookshelf/index",
  75. "iconPath": "/static/tabbar/bookshelf.png",
  76. "selectedIconPath": "/static/tabbar/bookshelf_selected.png",
  77. "text": "书架"
  78. },
  79. {
  80. "pagePath": "pages/me/index",
  81. "iconPath": "/static/tabbar/mine.png",
  82. "selectedIconPath": "/static/tabbar/mine_selected.png",
  83. "text": "我的"
  84. }
  85. ]
  86. },
  87. "globalStyle": {
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "哎呀免费小说",
  90. "navigationBarBackgroundColor": "#FFFFFF",
  91. "backgroundColor": "#F5F5F5",
  92. "app-plus": {
  93. "titleNView": false
  94. }
  95. }
  96. }