app.json 1.9 KB

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