pages.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "",
  8. // 去掉top导航栏
  9. "navigationStyle": "custom"
  10. }
  11. },
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. "navigationBarTitleText": "仪享云",
  16. "navigationBarBackgroundColor":"#ffffff"
  17. }
  18. },
  19. {
  20. "path" : "pages/teacher/navigation",
  21. "style" :
  22. {
  23. "navigationBarTitleText" : "仪享云教师端",
  24. "enablePullDownRefresh" : false
  25. }
  26. },
  27. {
  28. "path" : "pages/teacher/index",
  29. "style" :
  30. {
  31. "navigationBarTitleText" : "仪享云教师端",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/user/set",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "账号设置"
  40. }
  41. },
  42. {
  43. "path" : "pages/index/detail",
  44. "style" :
  45. {
  46. "navigationBarTitleText" : "借单详情",
  47. "enablePullDownRefresh" : false,
  48. "navigationBarBackgroundColor":"#ffffff"
  49. }
  50. },
  51. {
  52. "path" : "pages/index/console",
  53. "style" :
  54. {
  55. "navigationBarTitleText" : "控制台",
  56. "enablePullDownRefresh" : false,
  57. "navigationBarBackgroundColor":"#ffffff"
  58. }
  59. },
  60. {
  61. "path" : "pages/user/index",
  62. "style" :
  63. {
  64. "navigationBarTitleText" : "我的",
  65. "enablePullDownRefresh" : false,
  66. "navigationBarBackgroundColor":"#ffffff"
  67. }
  68. },
  69. {
  70. "path" : "pages/index/scan",
  71. "style" :
  72. {
  73. "navigationBarTitleText" : "",
  74. "enablePullDownRefresh" : false
  75. }
  76. },
  77. {
  78. "path" : "pages/teacher/message",
  79. "style" :
  80. {
  81. "navigationBarTitleText" : "",
  82. "enablePullDownRefresh" : false
  83. }
  84. },
  85. {
  86. "path" : "pages/teacher/application",
  87. "style" :
  88. {
  89. "navigationBarTitleText" : "仪器借用申请",
  90. "enablePullDownRefresh" : false
  91. }
  92. },
  93. {
  94. "path" : "pages/teacher/edit",
  95. "style" :
  96. {
  97. "navigationBarTitleText" : "仪器借取修改",
  98. "enablePullDownRefresh" : false,
  99. "navigationBarBackgroundColor":"#ffffff"
  100. }
  101. },
  102. {
  103. "path" : "pages/student/index",
  104. "style" :
  105. {
  106. "navigationBarTitleText" : "仪享云学生端",
  107. "enablePullDownRefresh" : false
  108. }
  109. }
  110. ,{
  111. "path": "uni_modules/q-sign/pages/q-sign",
  112. "style": {
  113. "navigationBarTitleText": "签字"
  114. }
  115. }
  116. ],
  117. "globalStyle": {
  118. "navigationBarTextStyle": "black",
  119. "navigationBarTitleText": "uni-app",
  120. "navigationBarBackgroundColor": "#F8F8F8",
  121. "backgroundColor": "#F8F8F8"
  122. },
  123. "uniIdRouter": {},
  124. "tabBar": {
  125. "height": "100px",
  126. "color": "#000",
  127. "selectedColor": "#2d8cf0",
  128. "backgroundColor": "#fff",
  129. "list": [{
  130. "pagePath": "pages/index/index",
  131. "iconPath": "static/img/home.png",
  132. "selectedIconPath": "static/img/homes.png",
  133. "text": "首页"
  134. },
  135. {
  136. "pagePath": "pages/index/console",
  137. "iconPath": "static/img/console.png",
  138. "selectedIconPath": "static/img/consoles.png",
  139. "text": "控制台"
  140. },
  141. {
  142. "pagePath": "pages/user/index",
  143. "iconPath": "static/img/user.png",
  144. "selectedIconPath": "static/img/users.png",
  145. "text": "我的"
  146. }
  147. ]
  148. }
  149. }