app.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/user/user",
  5. "pages/public/wxLogin",
  6. "pages/public/login",
  7. "pages/public/register",
  8. "pages/rescuers/rescuers",
  9. "pages/set/phone",
  10. "pages/address/address",
  11. "pages/rescuers/ToKey",
  12. "pages/record/details",
  13. "pages/user/about",
  14. "pages/set/password",
  15. "pages/public/forget",
  16. "pages/record/help",
  17. "pages/record/rescue",
  18. "pages/public/agreement",
  19. "pages/public/privacy",
  20. "pages/set/set",
  21. "pages/userinfo/userinfo",
  22. "pages/redirect/redirect"
  23. ],
  24. "subPackages": [
  25. {
  26. "root": "pagesA",
  27. "pages": [
  28. "record/call"
  29. ]
  30. }
  31. ],
  32. "window": {
  33. "navigationBarTextStyle": "black",
  34. "navigationBarTitleText": "uni-app",
  35. "navigationBarBackgroundColor": "#FFFFFF",
  36. "backgroundColor": "#f8f8f8"
  37. },
  38. "tabBar": {
  39. "color": "#C0C4CC",
  40. "selectedColor": "#FF4F4F",
  41. "iconWidth": "18px",
  42. "borderStyle": "black",
  43. "backgroundColor": "#ffffff",
  44. "list": [
  45. {
  46. "pagePath": "pages/index/index",
  47. "iconPath": "static/tabBar/tab-home.png",
  48. "selectedIconPath": "static/tabBar/tab-home-current.png",
  49. "text": "SOS"
  50. },
  51. {
  52. "pagePath": "pages/record/rescue",
  53. "iconPath": "static/tabBar/tab-rescuers.png",
  54. "selectedIconPath": "static/tabBar/tab-rescuers-current.png",
  55. "text": "救援记录"
  56. },
  57. {
  58. "pagePath": "pages/user/user",
  59. "iconPath": "static/tabBar/tab-my.png",
  60. "selectedIconPath": "static/tabBar/tab-my-current.png",
  61. "text": "我的"
  62. }
  63. ]
  64. },
  65. "preloadRule": {
  66. "pages/record/rescue": {
  67. "network": "all",
  68. "packages": [
  69. "pagesA"
  70. ]
  71. }
  72. },
  73. "permission": {
  74. "scope.userLocation": {
  75. "desc": "根据您的位置为您提供最近的救援者"
  76. }
  77. },
  78. "requiredPrivateInfos": [
  79. "getLocation"
  80. ],
  81. "usingComponents": {}
  82. }