app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [
  3. "pages/tabbar/index/index",
  4. "pages/tabbar/user/user",
  5. "pages/login/login",
  6. "pages/command/command",
  7. "pages/command/commandDetails",
  8. "pages/command/application",
  9. "pages/command/finish",
  10. "pages/throughTrain/throughTrain",
  11. "pages/throughTrain/throughTrainDetails",
  12. "pages/info/info",
  13. "pages/info/infoDetails",
  14. "pages/alterPassword/alterPassword",
  15. "pages/agreement/agreement"
  16. ],
  17. "subPackages": [],
  18. "window": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "爱罗山",
  21. "navigationBarBackgroundColor": "#f7f7f7",
  22. "backgroundColor": "#f7f7f7"
  23. },
  24. "tabBar": {
  25. "color": "#D1CBCB",
  26. "selectedColor": "#DE2E27",
  27. "borderStyle": "white",
  28. "backgroundColor": "#fff",
  29. "list": [
  30. {
  31. "pagePath": "pages/tabbar/index/index",
  32. "iconPath": "static/tabbar/home.png",
  33. "selectedIconPath": "static/tabbar/home-active.png",
  34. "text": "首页"
  35. },
  36. {
  37. "pagePath": "pages/tabbar/user/user",
  38. "iconPath": "static/tabbar/user.png",
  39. "selectedIconPath": "static/tabbar/user-active.png",
  40. "text": "我的"
  41. }
  42. ]
  43. },
  44. "__usePrivacyCheck__": true,
  45. "permission": {
  46. "scope.userInfo": {
  47. "desc": "用于获取您的头像、昵称等信息"
  48. }
  49. },
  50. "requiredPrivateInfos": [
  51. "getLocation",
  52. "chooseLocation"
  53. ],
  54. "usingComponents": {}
  55. }