app.json 924 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [
  3. "pages/home/index",
  4. "pages/my/index",
  5. "pages/ad/index"
  6. ],
  7. "window": {
  8. "navigationBarTitleText": "喵缘礼堂",
  9. "pageOrientation": "portrait",
  10. "backgroundColor": "#F8F8F8",
  11. "backgroundColorTop": "#F4F5F6",
  12. "backgroundColorBottom": "#F4F5F6"
  13. },
  14. "tabBar": {
  15. "color": "#909399",
  16. "selectedColor": "#67c23a",
  17. "borderStyle": "black",
  18. "backgroundColor": "#F8F8F8",
  19. "list": [
  20. {
  21. "pagePath": "pages/home/index",
  22. "text": "首页",
  23. "iconPath": "static/home.png",
  24. "selectedIconPath": "static/home-active.png"
  25. },
  26. {
  27. "pagePath": "pages/my/index",
  28. "text": "使用说明",
  29. "iconPath": "static/book.png",
  30. "selectedIconPath": "static/book-active.png"
  31. }
  32. ]
  33. },
  34. "permission": {
  35. "scope.userLocation": {
  36. "desc": "演示定位能力"
  37. }
  38. },
  39. "usingComponents": {}
  40. }