图书馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
3.5 KiB

2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/home/home",
  5. "style": {
  6. "navigationBarTitleText": "图书馆"
  7. }
  8. },
  9. {
  10. "path": "pages/search/search",
  11. "style": {
  12. "navigationBarTitleText": "图书检索"
  13. }
  14. },
  15. {
  16. "path": "pages/user/user",
  17. "style": {
  18. "navigationBarTitleText": "我的"
  19. }
  20. },
  21. {
  22. "path": "pages/login/login",
  23. "style": {
  24. "navigationBarTitleText": "登录"
  25. }
  26. },
  27. {
  28. "path": "pages/lendCar/lendCar",
  29. "style": {
  30. "navigationBarTitleText": "借阅清单"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "uni-app",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8",
  39. "app-plus": {
  40. "background": "#efeff4"
  41. }
  42. },
  43. "tabBar":{
  44. "selectedColor": "#409EFF",
  45. "list": [{
  46. "pagePath": "pages/home/home",
  47. "text": "首页",
  48. "iconPath": "static/tab/shouye.png",
  49. "selectedIconPath": "static/tab/shouyeActive.png"
  50. },{
  51. "pagePath": "pages/search/search",
  52. "text": "搜索",
  53. "iconPath": "static/tab/search.png",
  54. "selectedIconPath": "static/tab/searchActive.png"
  55. },{
  56. "pagePath": "pages/lendCar/lendCar",
  57. "text": "借阅",
  58. "iconPath": "static/tab/order.png",
  59. "selectedIconPath": "static/tab/orderActive.png"
  60. },{
  61. "pagePath": "pages/user/user",
  62. "text": "我的",
  63. "iconPath": "static/tab/my.png",
  64. "selectedIconPath": "static/tab/myActive.png"
  65. }]
  66. },
  67. "subPackages": [
  68. {
  69. "root": "subpkg",
  70. "pages": [
  71. {
  72. "path": "pages/book-detail/book-detail",
  73. "style": {
  74. "navigationBarTitleText": "图书详情",
  75. "enablePullDownRefresh": false
  76. }
  77. },
  78. {
  79. "path": "pages/book-list/book-list",
  80. "style": {
  81. "navigationBarTitleText": "图书列表"
  82. }
  83. },
  84. {
  85. "path": "pages/ranking/ranking",
  86. "style": {
  87. "navigationBarTitleText": "借阅排行榜"
  88. }
  89. },
  90. {
  91. "path": "pages/activity-list/activity-list",
  92. "style": {
  93. "navigationBarTitleText": "活动列表"
  94. }
  95. },
  96. {
  97. "path": "pages/activity-detail/activity-detail",
  98. "style": {
  99. "navigationBarTitleText": "活动详情"
  100. }
  101. },
  102. {
  103. "path": "pages/myLending/myLending",
  104. "style": {
  105. "navigationBarTitleText": "我的借阅",
  106. "enablePullDownRefresh": true, // -
  107. "onReachBottomDistance": 100
  108. }
  109. },
  110. {
  111. "path": "pages/feedback/feedback",
  112. "style": {
  113. "navigationBarTitleText": "读者留言"
  114. }
  115. },
  116. {
  117. "path": "pages/reader-card/reader-card",
  118. "style": {
  119. "navigationBarTitleText": "读者证"
  120. }
  121. },
  122. {
  123. "path": "pages/feedback-list/feedback-list",
  124. "style": {
  125. "navigationBarTitleText": "读者留言"
  126. }
  127. },
  128. {
  129. "path": "pages/change-password/change-password",
  130. "style": {
  131. "navigationBarTitleText": "修改密码"
  132. }
  133. },
  134. {
  135. "path": "pages/collect-list/collect-list",
  136. "style": {
  137. "navigationBarTitleText": "我的收藏",
  138. "enablePullDownRefresh": true, // -
  139. "onReachBottomDistance": 100
  140. }
  141. },
  142. {
  143. "path": "pages/user-info/user-info",
  144. "style": {
  145. "navigationBarTitleText": "个人资料"
  146. }
  147. },
  148. {
  149. "path": "pages/scan-book/scan-book",
  150. "style": {
  151. "navigationBarTitleText": ""
  152. }
  153. }
  154. ]
  155. }
  156. ]
  157. }