app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index",
  5. "pages/my/location"
  6. ],
  7. "subPackages": [
  8. {
  9. "root": "pagesOne",
  10. "pages": [
  11. "winner/index",
  12. "winner/uploadImage",
  13. "record/winnerList",
  14. "record/uploadList",
  15. "record/uploadDetail"
  16. ]
  17. }
  18. ],
  19. "window": {
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "uni-app",
  22. "navigationBarBackgroundColor": "#F8F8F8",
  23. "backgroundColor": "#F8F8F8"
  24. },
  25. "tabBar": {
  26. "color": "#A5AEC1",
  27. "selectedColor": "#1D212A",
  28. "backgroundColor": "#fff",
  29. "borderStyle": "white",
  30. "list": [
  31. {
  32. "text": "首页",
  33. "pagePath": "pages/index/index",
  34. "iconPath": "static/images/home_default.png",
  35. "selectedIconPath": "static/images/home_selected.png"
  36. },
  37. {
  38. "text": "我的",
  39. "pagePath": "pages/my/index",
  40. "iconPath": "static/images/user_default.png",
  41. "selectedIconPath": "static/images/user_selected.png"
  42. }
  43. ]
  44. },
  45. "requiredPrivateInfos": [
  46. "getLocation"
  47. ],
  48. "permission": {
  49. "scope.userLocation": {
  50. "desc": "是否允许授权地理位置信息。"
  51. }
  52. },
  53. "usingComponents": {}
  54. }