pages.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
  5. "custom": {
  6. "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
  7. }
  8. },
  9. "pages": [
  10. {
  11. "path" : "pages/login",
  12. "style" :
  13. {
  14. "navigationBarTitleText" : "登录",
  15. "enablePullDownRefresh" : false
  16. }
  17. },
  18. {
  19. "path": "pages/message/index",
  20. "style": {
  21. "navigationBarTitleText": "消息",
  22. "enablePullDownRefresh": false
  23. }
  24. },
  25. {
  26. "path": "pages/process/index",
  27. "style": {
  28. "navigationBarTitleText": "流程",
  29. "enablePullDownRefresh": false
  30. }
  31. },
  32. {
  33. "path": "pages/work/index",
  34. "style": {
  35. "navigationBarTitleText": "工作台",
  36. "enablePullDownRefresh": false
  37. }
  38. },
  39. {
  40. "path": "pages/contacts/index",
  41. "style": {
  42. "navigationBarTitleText": "通讯录",
  43. "enablePullDownRefresh": false
  44. }
  45. },
  46. {
  47. "path": "pages/mine/index",
  48. "style": {
  49. "navigationBarTitleText": "我的",
  50. "enablePullDownRefresh": false
  51. }
  52. },
  53. {
  54. "path": "pages/message/detail/index",
  55. "style": {
  56. "navigationBarTitleText": "消息详情",
  57. "enablePullDownRefresh": false
  58. }
  59. },
  60. {
  61. "path": "pages/message/detail/URLView",
  62. "style": {
  63. "navigationBarTitleText": "",
  64. "enablePullDownRefresh": false
  65. }
  66. },
  67. {
  68. "path": "pages/process/detail/index",
  69. "style": {
  70. "navigationBarTitleText": "流程信息",
  71. "enablePullDownRefresh": false
  72. }
  73. },
  74. {
  75. "path" : "pages/work/edit/index",
  76. "style" :
  77. {
  78. "navigationBarTitleText" : "发起流程",
  79. "enablePullDownRefresh" : false
  80. }
  81. },
  82. {
  83. "path" : "pages/work/diary/index",
  84. "style" :
  85. {
  86. "navigationBarTitleText" : "周报",
  87. "enablePullDownRefresh" : false
  88. }
  89. },
  90. {
  91. "path" : "pages/work/diary/edit",
  92. "style" :
  93. {
  94. "navigationBarTitleText" : "日报编辑",
  95. "enablePullDownRefresh" : false
  96. }
  97. },
  98. {
  99. "path" : "pages/work/homesys/index",
  100. "style" :
  101. {
  102. "navigationBarTitleText" : "房屋管家",
  103. "navigationStyle": "custom", // 隐藏默认导航栏(需自行实现自定义导航栏)
  104. "enablePullDownRefresh" : false
  105. }
  106. },
  107. {
  108. "path": "pages/mine/edit/edit",
  109. "style": {
  110. "navigationBarTitleText": "编辑资料",
  111. "enablePullDownRefresh": false
  112. }
  113. },
  114. {
  115. "path": "pages/mine/personal_message/personal_message",
  116. "style": {
  117. "navigationBarTitleText": "个人信息",
  118. "enablePullDownRefresh": false
  119. }
  120. },
  121. {
  122. "path": "pages/mine/setting/setting",
  123. "style": {
  124. "navigationBarTitleText": "应用设置",
  125. "enablePullDownRefresh": false
  126. }
  127. },
  128. {
  129. "path": "pages/mine/setting/pwdEdit/pwdEdit",
  130. "style": {
  131. "navigationBarTitleText": "密码修改",
  132. "enablePullDownRefresh": false
  133. }
  134. },
  135. {
  136. "path" : "pages/mine/checkIn/checkIn",
  137. "style" :
  138. {
  139. "navigationBarTitleText" : "我的考勤"
  140. }
  141. },
  142. {
  143. "path" : "pages/mine/clockIn/clockIn",
  144. "style" :
  145. {
  146. "navigationBarTitleText" : "打卡签到"
  147. }
  148. },
  149. {
  150. "path" : "pages/message/chat/index",
  151. "style" :
  152. {
  153. "navigationBarTitleText" : "AI助手"
  154. }
  155. },
  156. {
  157. "path" : "pages/mine/avatar/avatar",
  158. "style" :
  159. {
  160. "navigationBarTitleText" : "头像修改"
  161. }
  162. }
  163. ],
  164. "tabBar": {
  165. "color": "#7A7E83",
  166. "selectedColor": "#007AFF",
  167. "borderStyle": "black",
  168. "backgroundColor": "#F8F8F8",
  169. "list": [
  170. {
  171. "pagePath": "pages/message/index",
  172. "iconPath": "static/images/tabbar/message.png",
  173. "selectedIconPath": "static/images/tabbar/message_.png",
  174. "text": "消息"
  175. },
  176. {
  177. "pagePath": "pages/process/index",
  178. "iconPath": "static/images/tabbar/process.png",
  179. "selectedIconPath": "static/images/tabbar/process_.png",
  180. "text": "流程"
  181. },
  182. {
  183. "pagePath": "pages/work/index",
  184. "iconPath": "static/images/tabbar/work.png",
  185. "selectedIconPath": "static/images/tabbar/work_.png",
  186. "text": "工作台"
  187. },
  188. {
  189. "pagePath": "pages/contacts/index",
  190. "iconPath": "static/images/tabbar/contacts.png",
  191. "selectedIconPath": "static/images/tabbar/contacts_.png",
  192. "text": "通讯录"
  193. },
  194. {
  195. "pagePath": "pages/mine/index",
  196. "iconPath": "static/images/tabbar/mine.png",
  197. "selectedIconPath": "static/images/tabbar/mine_.png",
  198. "text": "我的"
  199. }
  200. ]
  201. },
  202. "globalStyle": {
  203. "navigationBarTextStyle": "white",
  204. "navigationBarTitleText": "uni-app",
  205. "navigationBarBackgroundColor": "#468bf0",
  206. "backgroundColor": "#F8F8F8"
  207. },
  208. "uniIdRouter": {}
  209. }