app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/index",
  5. "pages/my/index"
  6. ],
  7. "subPackages": [
  8. {
  9. "root": "pagesHome",
  10. "pages": [
  11. "match/index",
  12. "match/sign",
  13. "login/index",
  14. "register/index"
  15. ]
  16. },
  17. {
  18. "root": "pagesMy",
  19. "pages": [
  20. "match/index",
  21. "match/score",
  22. "match/sign",
  23. "match/add",
  24. "activity/index",
  25. "activity/add",
  26. "activity/detail",
  27. "contact/index",
  28. "agree/index",
  29. "about/index",
  30. "account/index",
  31. "account/basic",
  32. "account/bind",
  33. "account/password"
  34. ]
  35. }
  36. ],
  37. "window": {
  38. "navigationBarTextStyle": "black",
  39. "navigationBarTitleText": "产学研用双创活动",
  40. "navigationBarBackgroundColor": "#ffffff"
  41. },
  42. "tabBar": {
  43. "color": "8a8a8a",
  44. "selectedColor": "#262D3D",
  45. "borderStyle": "black",
  46. "backgroundColor": "#ffffff",
  47. "list": [
  48. {
  49. "pagePath": "pages/home/index",
  50. "iconPath": "static/homeHL.png",
  51. "selectedIconPath": "static/home.png",
  52. "text": "双创活动"
  53. },
  54. {
  55. "pagePath": "pages/my/index",
  56. "iconPath": "static/myHL.png",
  57. "selectedIconPath": "static/my.png",
  58. "text": "我的"
  59. }
  60. ]
  61. },
  62. "permission": {
  63. "scope.userLocation": {
  64. "desc": "定位当前位置,选在收获地址"
  65. }
  66. },
  67. "requiredPrivateInfos": [
  68. "chooseAddress",
  69. "chooseLocation"
  70. ],
  71. "lazyCodeLoading": "requiredComponents",
  72. "usingComponents": {}
  73. }