app.json 1.5 KB

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