app.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/index/detail",
  5. "pages/help/index",
  6. "pages/index/history"
  7. ],
  8. "subPackages": [],
  9. "window": {
  10. "navigationBarTextStyle": "white",
  11. "navigationBarTitleText": "uView",
  12. "navigationBarBackgroundColor": "#10C08C",
  13. "backgroundColor": "#F8F8F8"
  14. },
  15. "tabBar": {
  16. "color": "#ffffff",
  17. "selectedColor": "#F8F3D4",
  18. "backgroundColor": "#10C08C",
  19. "borderStyle": "white",
  20. "list": [
  21. {
  22. "pagePath": "pages/index/index",
  23. "iconPath": "static/image/home.png",
  24. "selectedIconPath": "static/image/home-fill.png",
  25. "text": "首页"
  26. },
  27. {
  28. "pagePath": "pages/help/index",
  29. "iconPath": "static/image/help.png",
  30. "selectedIconPath": "static/image/help-fill.png",
  31. "text": "上传信息"
  32. }
  33. ]
  34. },
  35. "permission": {
  36. "scope.userLocation": {
  37. "desc": "获取位置"
  38. }
  39. },
  40. "usingComponents": {
  41. "tab-bar": "/components/tabbar"
  42. }
  43. }