pages.json 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. // tabbar
  4. {
  5. "path": "pages/tabbar/index/index",
  6. "style": {
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/tabbar/contacts/contacts",
  12. "style": {
  13. "navigationBarTitleText": "通讯录"
  14. }
  15. },{
  16. "path": "pages/tabbar/workbench/workbench",
  17. "style": {
  18. "navigationBarTitleText": "工作台"
  19. }
  20. }, {
  21. "path": "pages/tabbar/production/production",
  22. "style": {
  23. "navigationBarTitleText": "生产数据"
  24. }
  25. }, {
  26. "path": "pages/tabbar/my/my",
  27. "style": {
  28. "navigationBarTitleText": "个人中心"
  29. }
  30. }, {
  31. "path": "pages/production/production_report/production_report",
  32. "style": {
  33. "navigationBarTitleText": "生产报表"
  34. }
  35. }, {
  36. "path": "pages/production/production_report/detail/detail",
  37. "style": {
  38. "navigationBarTitleText": " "
  39. }
  40. }, {
  41. "path": "pages/production/safety_monitoring/safety_monitoring",
  42. "style": {
  43. "navigationStyle": "custom"
  44. }
  45. }, {
  46. "path": "pages/production/safety_monitoring/safety_monitoring_name_detail/safety_monitoring_name_detail",
  47. "style": {
  48. "navigationBarTitleText": ""
  49. }
  50. }, {
  51. "path": "pages/production/safety_monitoring/safety_monitoring_status_detail/safety_monitoring_status_detail",
  52. "style": {
  53. "navigationBarTitleText": ""
  54. }
  55. }, {
  56. "path": "pages/production/safety_monitoring/safety_monitoring_search/safety_monitoring_search",
  57. "style": {
  58. "navigationStyle": "custom"
  59. }
  60. }, {
  61. "path": "pages/production/personnel_orientation/personnel_orientation",
  62. "style": {
  63. "navigationStyle": "custom"
  64. }
  65. }
  66. ,{
  67. "path" : "pages/production/personnel_orientation/search/search",
  68. "style" :
  69. {
  70. "navigationStyle": "custom"
  71. }
  72. }
  73. ,{
  74. "path" : "pages/production/personnel_orientation/depart-people/depart-people",
  75. "style" :
  76. {
  77. "navigationBarTitleText": ""
  78. }
  79. }
  80. ,{
  81. "path" : "pages/production/personnel_orientation/depart-people-2/depart-people-2",
  82. "style" :
  83. {
  84. "navigationBarTitleText": ""
  85. }
  86. }
  87. ,{
  88. "path" : "pages/production/personnel_orientation/downhole_statistics/downhole_statistics",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "下井记录"
  92. }
  93. }
  94. ,{
  95. "path" : "pages/production/personnel_orientation/people_track/people_track",
  96. "style" :
  97. {
  98. "navigationBarTitleText": "下井轨迹"
  99. }
  100. }
  101. ,{
  102. "path" : "pages/ningdongyunying/production_statistics/production_statistics",
  103. "style" :
  104. {
  105. "navigationBarTitleText": "生产统计"
  106. }
  107. }
  108. ,{
  109. "path" : "pages/ningdongyunying/personnel_orientation/personnel_orientation",
  110. "style" :
  111. {
  112. "navigationBarTitleText": "",
  113. "enablePullDownRefresh": false
  114. }
  115. }
  116. ,{
  117. "path" : "pages/ningdongyunying/safety_monitoring/safety_monitoring",
  118. "style" :
  119. {
  120. "navigationBarTitleText": "",
  121. "enablePullDownRefresh": false
  122. }
  123. },{
  124. "path":"pages/production/t-c-c-contacts-info/t-c-c-contacts-info",
  125. "style" :
  126. {
  127. "navigationBarTitleText": "组织架构"
  128. }
  129. }
  130. ],
  131. "globalStyle": {
  132. "navigationBarTextStyle": "white",
  133. "navigationBarTitleText": " ",
  134. "navigationBarBackgroundColor": "#009FE8",
  135. "backgroundColor": "#FFFFFF"
  136. },
  137. "tabBar": {
  138. "selectedColor": "#44A0DE",
  139. "list": [{
  140. "text": "首页",
  141. "pagePath": "pages/tabbar/index/index",
  142. "iconPath": "static/tabbar/home.png",
  143. "selectedIconPath": "static/tabbar/home_active.png"
  144. },
  145. {
  146. "text": "通讯录",
  147. "pagePath": "pages/tabbar/contacts/contacts",
  148. "iconPath": "static/tabbar/contacts.png",
  149. "selectedIconPath": "static/tabbar/contacts_active.png"
  150. },
  151. {
  152. "text": "工作台",
  153. "pagePath": "pages/tabbar/workbench/workbench",
  154. "iconPath": "static/tabbar/work.png",
  155. "selectedIconPath": "static/tabbar/work_active.png"
  156. },
  157. {
  158. "text": "生产数据",
  159. "pagePath": "pages/tabbar/production/production",
  160. "iconPath": "static/tabbar/production.png",
  161. "selectedIconPath": "static/tabbar/production_active.png"
  162. },
  163. {
  164. "text": "个人中心",
  165. "pagePath": "pages/tabbar/my/my",
  166. "iconPath": "static/tabbar/my.png",
  167. "selectedIconPath": "static/tabbar/my_active.png"
  168. }
  169. ]
  170. }
  171. }