pages.json 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path" : "pages/login/login",
  8. "style" :
  9. {
  10. "navigationBarTextStyle": "white",
  11. "navigationBarTitleText": "物业助手",
  12. "navigationBarBackgroundColor": "#7dc7ae",
  13. "backgroundColor": "#7dc7ae"
  14. }
  15. },
  16. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationBarTextStyle": "white",
  20. "navigationBarTitleText": "物业助手",
  21. "navigationBarBackgroundColor": "#7dc7ae",
  22. "backgroundColor": "#ffffff"
  23. }
  24. }
  25. ,{
  26. "path" : "pages/mine/mine",
  27. "style" :
  28. {
  29. "navigationBarTextStyle": "white",
  30. "navigationBarTitleText": "",
  31. "navigationBarBackgroundColor": "#7dc7ae",
  32. "backgroundColor": "#7dc7ae",
  33. "enablePullDownRefresh": true
  34. }
  35. }
  36. ,{
  37. "path" : "pages/residential/residential",
  38. "style" :
  39. {
  40. "navigationBarTitleText": "",
  41. "enablePullDownRefresh": false
  42. }
  43. }
  44. ,{
  45. "path" : "pages/building/building",
  46. "style" :
  47. {
  48. "navigationBarTitleText": "楼栋管理",
  49. "enablePullDownRefresh": false
  50. }
  51. }
  52. ,{
  53. "path" : "pages/unit/unit",
  54. "style" :
  55. {
  56. "navigationBarTitleText": "",
  57. "enablePullDownRefresh": false
  58. }
  59. }
  60. ,{
  61. "path" : "pages/room/room",
  62. "style" :
  63. {
  64. "navigationBarTitleText": "房间管理",
  65. "enablePullDownRefresh": false
  66. }
  67. }
  68. ,{
  69. "path" : "pages/user/user",
  70. "style" :
  71. {
  72. "navigationBarTitleText": "住户管理",
  73. "enablePullDownRefresh": false
  74. }
  75. }
  76. ,{
  77. "path" : "pages/user-auth/user-auth",
  78. "style" :
  79. {
  80. "navigationBarTitleText": "住户审核",
  81. "enablePullDownRefresh": false
  82. }
  83. }
  84. ,{
  85. "path" : "pages/car/car",
  86. "style" :
  87. {
  88. "navigationBarTitleText": "",
  89. "enablePullDownRefresh": false
  90. }
  91. }
  92. ,{
  93. "path" : "pages/room/add",
  94. "style" :
  95. {
  96. "navigationBarTitleText": "添加房间",
  97. "enablePullDownRefresh": false
  98. }
  99. }
  100. ,{
  101. "path" : "pages/room/detail",
  102. "style" :
  103. {
  104. "navigationBarTitleText": "房间详情",
  105. "enablePullDownRefresh": false
  106. }
  107. }
  108. ,{
  109. "path" : "pages/user/detail",
  110. "style" :
  111. {
  112. "navigationBarTitleText": "住户详情",
  113. "enablePullDownRefresh": false
  114. }
  115. }
  116. ,{
  117. "path" : "pages/user/add",
  118. "style" :
  119. {
  120. "navigationBarTitleText": "新增住户",
  121. "enablePullDownRefresh": false
  122. }
  123. }
  124. ,{
  125. "path" : "pages/user-auth/detail",
  126. "style" :
  127. {
  128. "navigationBarTitleText": "审核详情",
  129. "enablePullDownRefresh": false
  130. }
  131. }
  132. ],
  133. "globalStyle": {
  134. "navigationBarTextStyle": "black",
  135. "navigationBarTitleText": "物业助手",
  136. "navigationBarBackgroundColor": "#FFFFFF",
  137. "backgroundColor": "#FFFFFF"
  138. },
  139. "tabBar": {
  140. "color":"#a0aabc",
  141. "backgroundColor":"#FFFFFF",
  142. "borderStyle":"white",
  143. "selectedColor":"#7dc7ae",
  144. "list": [
  145. {
  146. "pagePath": "pages/index/index",
  147. "text": "工作台",
  148. "selectedIconPath":"static/tarbar/index-select.png",
  149. "iconPath":"static/tarbar/index.png"
  150. },
  151. {
  152. "pagePath": "pages/mine/mine",
  153. "text": "个人中心",
  154. "selectedIconPath":"static/tarbar/mine-select.png",
  155. "iconPath":"static/tarbar/mine.png"
  156. }
  157. ]
  158. }
  159. }