app.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "pages": [
  3. "pages/me/index",
  4. "pages/user/info/index",
  5. "pages/tool/sign/signature",
  6. "pages/index/index",
  7. "pages/tool/identify/index",
  8. "pages/task/rob/index",
  9. "pages/task/lyg/index",
  10. "pages/task/trade/index",
  11. "pages/task/demand/index",
  12. "pages/task/supply/index",
  13. "pages/task/confirm/index",
  14. "pages/task/finish/index",
  15. "pages/tool/band/band",
  16. "pages/account/index",
  17. "pages/log/log",
  18. "pages/tool/empty/index"
  19. ],
  20. "window": {
  21. "backgroundTextStyle": "light",
  22. "navigationBarBackgroundColor": "#000",
  23. "navigationBarTitleText": "云园区",
  24. "navigationStyle": "custom",
  25. "navigationBarTextStyle": "white",
  26. "enablePullDownRefresh": true
  27. },
  28. "tabBar": {
  29. "color": "#666666",
  30. "selectedColor": "#FF6347",
  31. "borderStyle": "black",
  32. "backgroundColor": "#ffffff",
  33. "list": [
  34. {
  35. "pagePath": "pages/index/index",
  36. "iconPath": "img/icons/homes.png",
  37. "selectedIconPath": "img/icons/homesopen.png",
  38. "text": "首页"
  39. },
  40. {
  41. "pagePath": "pages/task/lyg/index",
  42. "iconPath": "img/icons/tasks.png",
  43. "selectedIconPath": "img/icons/tasksopen.png",
  44. "text": "任务大厅"
  45. },
  46. {
  47. "pagePath": "pages/account/index",
  48. "iconPath": "img/icons/accounts.png",
  49. "selectedIconPath": "img/icons/accountsopen.png",
  50. "text": "账单"
  51. },
  52. {
  53. "pagePath": "pages/me/index",
  54. "iconPath": "img/icons/mes.png",
  55. "selectedIconPath": "img/icons/mesopen.png",
  56. "text": "个人中心"
  57. }
  58. ]
  59. },
  60. "usingComponents": {
  61. "cu-custom": "/colorui/components/cu-custom"
  62. },
  63. "permission": {
  64. "scope.userLocation": {
  65. "desc": "用户定位附近的花"
  66. }
  67. },
  68. "sitemapLocation": "sitemap.json"
  69. }