app.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/member/index",
  5. "pages/user/index",
  6. "pages/login/index"
  7. ],
  8. "subPackages": [
  9. {
  10. "root": "pagesMember",
  11. "pages": [
  12. "venueMore",
  13. "venueDetail",
  14. "classDetail",
  15. "subscribelForm",
  16. "subscribelSuccess",
  17. "leaveForm",
  18. "evaluateForm",
  19. "myClassDetail",
  20. "courseForm"
  21. ]
  22. },
  23. {
  24. "root": "pagesMain",
  25. "pages": [
  26. "orderList",
  27. "studentList",
  28. "couponList",
  29. "shareInfo",
  30. "evaluateList",
  31. "subscribeInfo",
  32. "subscribeList",
  33. "memberCardList",
  34. "openMember",
  35. "contractInfo",
  36. "payResult",
  37. "payResultNo"
  38. ]
  39. }
  40. ],
  41. "window": {
  42. "navigationStyle": "default",
  43. "navigationBarTextStyle": "black",
  44. "navigationBarTitleText": "",
  45. "navigationBarBackgroundColor": "#ffffff",
  46. "backgroundColor": "#F8F8F8"
  47. },
  48. "tabBar": {
  49. "borderStyle": "black",
  50. "backgroundColor": "#fff",
  51. "color": "#9A9A9A",
  52. "selectedColor": "#666666",
  53. "list": [
  54. {
  55. "pagePath": "pages/index/index",
  56. "iconPath": "static/images/icon-index.png",
  57. "selectedIconPath": "static/images/icon-index-active.png",
  58. "text": "首页"
  59. },
  60. {
  61. "pagePath": "pages/member/index",
  62. "iconPath": "static/images/icon-member.png",
  63. "selectedIconPath": "static/images/icon-member-active.png",
  64. "text": "会员"
  65. },
  66. {
  67. "pagePath": "pages/user/index",
  68. "iconPath": "static/images/icon-mine.png",
  69. "selectedIconPath": "static/images/icon-mine-active.png",
  70. "text": "个人"
  71. }
  72. ]
  73. },
  74. "runmode": "liberate",
  75. "permission": {
  76. "scope.userLocation": {
  77. "desc": "获取当前区域定位以选取附近场馆"
  78. }
  79. },
  80. "usingComponents": {},
  81. "sitemapLocation": "sitemap.json"
  82. }