pages.json 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. {
  2. "lazyCodeLoading":"requiredComponents",
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/logo/index",
  6. "style": {
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/visitor/index",
  12. "style": {
  13. "navigationBarTitleText": "实验室管理系统",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path" : "pages/home/home",
  19. "style" :
  20. {
  21. "enablePullDownRefresh": false,
  22. "navigationBarTitleText": "实验室管理系统"
  23. }
  24. },
  25. {
  26. "path" : "pages/login/login",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "登录",
  30. "enablePullDownRefresh": false
  31. }
  32. },
  33. {
  34. "path" : "pages/search/search",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "搜索设备",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path" : "pages/borrow/borrow",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "设备信息",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path" : "pages/menus/mine/mine",
  51. "style" :
  52. {
  53. "navigationBarTitleText": "个人信息",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. {
  58. "path" : "pages/menus/borrow-record/borrow-record",
  59. "style" :
  60. {
  61. "navigationBarTitleText": "借用记录",
  62. "enablePullDownRefresh": false
  63. }
  64. },
  65. {
  66. "path" : "pages/menus/menu/menu",
  67. "style" :
  68. {
  69. "navigationBarTitleText": "实验室设备管理",
  70. "enablePullDownRefresh": false
  71. }
  72. }
  73. ,{
  74. "path" : "pages/return/return",
  75. "style" :
  76. {
  77. "navigationBarTitleText": "归还记录",
  78. "enablePullDownRefresh": false
  79. }
  80. }
  81. ,{
  82. "path" : "pages/fault/fault-report/fault-report",
  83. "style" :
  84. {
  85. "navigationBarTitleText": "故障上报",
  86. "enablePullDownRefresh": false
  87. }
  88. }
  89. ,{
  90. "path" : "pages/notice/notice",
  91. "style" :
  92. {
  93. "navigationBarTitleText": "通知",
  94. "enablePullDownRefresh": false
  95. }
  96. }
  97. ,{
  98. "path" : "pages/fault/fault-list/fault-list",
  99. "style" :
  100. {
  101. "navigationBarTitleText": "故障处理记录",
  102. "enablePullDownRefresh": false
  103. }
  104. }
  105. ,{
  106. "path" : "pages/fault/fault-handle/fault-handle",
  107. "style" :
  108. {
  109. "navigationBarTitleText": "故障处理",
  110. "enablePullDownRefresh": false
  111. }
  112. }
  113. ,{
  114. "path" : "pages/notice-list/notice-list",
  115. "style" :
  116. {
  117. "navigationBarTitleText": "通知",
  118. "enablePullDownRefresh": false
  119. }
  120. }
  121. ,{
  122. "path" : "pages/visitor/assetDetail/assetDetail",
  123. "style" :
  124. {
  125. "navigationBarTitleText": "设备详情",
  126. "enablePullDownRefresh": false
  127. }
  128. },
  129. {
  130. "path" : "pages/visitor/noticeList",
  131. "style": {
  132. "navigationBarTitleText": "成果列表",
  133. "enablePullDownRefresh": false
  134. }
  135. }
  136. ,{
  137. "path" : "pages/visitor/modeVideo/modeVideo",
  138. "style" :
  139. {
  140. "navigationBarTitleText": "开放视频",
  141. "enablePullDownRefresh": false
  142. }
  143. }
  144. ],
  145. "globalStyle": {
  146. "navigationBarTextStyle": "black",
  147. "navigationBarTitleText": "uni-app",
  148. "navigationBarBackgroundColor": "#F8F8F8",
  149. "backgroundColor": "#F8F8F8"
  150. },
  151. "tabBar": {
  152. "color": "#7A7E83",
  153. "selectedColor": "#3cc51f",
  154. "borderStyle": "black",
  155. "backgroundColor": "#ffffff",
  156. "list": [
  157. {
  158. "pagePath": "pages/menus/menu/menu",
  159. "iconPath": "static/images/我的.png",
  160. "selectedIconPath": "static/images/我的2.png",
  161. "text": "我的"
  162. },
  163. {
  164. "pagePath": "pages/home/home",
  165. "iconPath": "static/images/首页.png",
  166. "selectedIconPath": "static/images/首页2.png",
  167. "text": "首页"
  168. },
  169. {
  170. "pagePath": "pages/menus/borrow-record/borrow-record",
  171. "iconPath": "static/images/项目.png",
  172. "selectedIconPath": "static/images/项目2.png",
  173. "text": "借用记录"
  174. }]
  175. },
  176. "uniIdRouter": {},
  177. "easycom": {
  178. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  179. }
  180. }