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. "subscribeListAll",
  34. "memberCardList",
  35. "openMember",
  36. "contractInfo",
  37. "payResult",
  38. "payResultNo"
  39. ]
  40. }
  41. ],
  42. "window": {
  43. "navigationStyle": "default",
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "",
  46. "navigationBarBackgroundColor": "#ffffff",
  47. "backgroundColor": "#F8F8F8"
  48. },
  49. "tabBar": {
  50. "borderStyle": "black",
  51. "backgroundColor": "#fff",
  52. "color": "#9A9A9A",
  53. "selectedColor": "#666666",
  54. "list": [
  55. {
  56. "pagePath": "pages/index/index",
  57. "iconPath": "static/images/icon-index.png",
  58. "selectedIconPath": "static/images/icon-index-active.png",
  59. "text": "首页"
  60. },
  61. {
  62. "pagePath": "pages/member/index",
  63. "iconPath": "static/images/icon-member.png",
  64. "selectedIconPath": "static/images/icon-member-active.png",
  65. "text": "会员"
  66. },
  67. {
  68. "pagePath": "pages/user/index",
  69. "iconPath": "static/images/icon-mine.png",
  70. "selectedIconPath": "static/images/icon-mine-active.png",
  71. "text": "个人"
  72. }
  73. ]
  74. },
  75. "runmode": "liberate",
  76. "permission": {
  77. "scope.userLocation": {
  78. "desc": "获取当前区域定位以选取附近场馆"
  79. }
  80. },
  81. "usingComponents": {}
  82. }