pages.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/history/history",
  11. "style": {
  12. "navigationBarTitleText": "操作记录",
  13. "enablePullDownRefresh": true
  14. }
  15. },
  16. {
  17. "path": "pages/history/detail/detail",
  18. "style": {
  19. "navigationBarTitleText": "操作记录详情"
  20. }
  21. },
  22. {
  23. "path" : "pages/myCenter/myCenter",
  24. "style" :
  25. {
  26. "navigationBarTitleText": "我的",
  27. "enablePullDownRefresh": false
  28. }
  29. },
  30. {
  31. "path": "pages/login/index",
  32. "style": {
  33. "navigationBarTitleText": "登录"
  34. }
  35. },
  36. {
  37. "path": "pages/authorizedLogin/index",
  38. "style": {
  39. "navigationBarTitleText": "授权登录"
  40. }
  41. },
  42. {
  43. "path": "pages/service_agreement/service_agreement",
  44. "style": {
  45. "navigationBarTitleText": "隐私协议"
  46. }
  47. }
  48. ,{
  49. "path" : "pages/app_views/satisfaction_evaluation/satisfaction_evaluation",
  50. "style" :
  51. {
  52. "navigationBarTitleText": "满意度评价",
  53. "enablePullDownRefresh": false
  54. }
  55. }
  56. ,{
  57. "path" : "pages/app_views/safe_checked/safe_checked",
  58. "style" :
  59. {
  60. "navigationBarTitleText": "安全巡检",
  61. "enablePullDownRefresh": false
  62. }
  63. }
  64. ,{
  65. "path" : "pages/app_views/danger/submit/submit",
  66. "style" :
  67. {
  68. "navigationBarTitleText": "登记隐患",
  69. "enablePullDownRefresh": false
  70. }
  71. }
  72. ,{
  73. "path" : "pages/app_views/equipment_maintenance/equipment_maintenance",
  74. "style" :
  75. {
  76. "navigationBarTitleText": "设备保养",
  77. "enablePullDownRefresh": false
  78. }
  79. }
  80. ,{
  81. "path" : "pages/app_views/problem_feedback/problem_feedback",
  82. "style" :
  83. {
  84. "navigationBarTitleText": "问题反馈",
  85. "enablePullDownRefresh": false
  86. }
  87. }
  88. ,{
  89. "path" : "pages/app_views/danger/handle/handle",
  90. "style" :
  91. {
  92. "navigationBarTitleText": "隐患处理",
  93. "enablePullDownRefresh": false
  94. }
  95. }
  96. ,{
  97. "path" : "pages/app_views/checkList/index/index",
  98. "style" :
  99. {
  100. "navigationBarTitleText": "清单",
  101. "enablePullDownRefresh": false
  102. }
  103. }
  104. ,{
  105. "path" : "pages/app_views/checkList/from/from",
  106. "style" :
  107. {
  108. "navigationBarTitleText": "风险点巡检",
  109. "enablePullDownRefresh": false
  110. }
  111. }
  112. ],
  113. "tabBar": {
  114. "color": "#7A7E83",
  115. "selectedColor": "#1296db",
  116. "borderStyle": "black",
  117. "backgroundColor": "#ffffff",
  118. "list": [{
  119. "pagePath": "pages/index/index",
  120. "iconPath": "static/tabbar/index.png",
  121. "selectedIconPath": "static/tabbar/indexEd.png",
  122. "text": "首页"
  123. }, {
  124. "pagePath": "pages/history/history",
  125. "iconPath": "static/tabbar/history.png",
  126. "selectedIconPath": "static/tabbar/historyEd.png",
  127. "text": "历史"
  128. }, {
  129. "pagePath": "pages/myCenter/myCenter",
  130. "iconPath": "static/tabbar/myCenter.png",
  131. "selectedIconPath": "static/tabbar/myCenterEd.png",
  132. "text": "我的"
  133. }]
  134. },
  135. "globalStyle": {
  136. "navigationBarTextStyle": "black",
  137. "navigationBarTitleText": "uni-app",
  138. "navigationBarBackgroundColor": "#F8F8F8",
  139. "backgroundColor": "#F8F8F8"
  140. },
  141. "uniIdRouter": {}
  142. }