pages.json 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. "globalStyle": {
  138. "navigationBarTextStyle": "black",
  139. "navigationBarTitleText": "uni-app",
  140. "navigationBarBackgroundColor": "#F8F8F8",
  141. "backgroundColor": "#F8F8F8"
  142. },
  143. "tabBar": {
  144. "color": "#7A7E83",
  145. "selectedColor": "#3cc51f",
  146. "borderStyle": "black",
  147. "backgroundColor": "#ffffff",
  148. "list": [
  149. {
  150. "pagePath": "pages/menus/menu/menu",
  151. "iconPath": "static/images/我的.png",
  152. "selectedIconPath": "static/images/我的2.png",
  153. "text": "我的"
  154. },
  155. {
  156. "pagePath": "pages/home/home",
  157. "iconPath": "static/images/首页.png",
  158. "selectedIconPath": "static/images/首页2.png",
  159. "text": "首页"
  160. },
  161. {
  162. "pagePath": "pages/menus/borrow-record/borrow-record",
  163. "iconPath": "static/images/项目.png",
  164. "selectedIconPath": "static/images/项目2.png",
  165. "text": "借用记录"
  166. }]
  167. },
  168. "uniIdRouter": {},
  169. "easycom": {
  170. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  171. }
  172. }