pages.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue",
  4. "layout": "@/layout/index.vue"
  5. },
  6. "pages": [
  7. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/index/index",
  10. "style": {
  11. "navigationBarTitleText": "张四爷剧场",
  12. "enablePullDownRefresh": false
  13. }
  14. },
  15. {
  16. "path": "pages/trace/index",
  17. "style": {
  18. "navigationBarTitleText": "张四爷剧场",
  19. "enablePullDownRefresh": false
  20. }
  21. },
  22. {
  23. "path": "pages/my/index",
  24. "style": {
  25. "navigationBarTitleText": "张四爷剧场",
  26. "enablePullDownRefresh": false
  27. }
  28. },
  29. {
  30. "path": "pages/trace/collect",
  31. "style": {
  32. "navigationBarTitleText": "我的收藏",
  33. "enablePullDownRefresh": false
  34. }
  35. },
  36. {
  37. "path": "pages/trace/trace",
  38. "style": {
  39. "navigationBarTitleText": "我的追剧",
  40. "enablePullDownRefresh": false
  41. }
  42. },
  43. {
  44. "path": "pages/my/consume",
  45. "style": {
  46. "navigationBarTitleText": "消费记录",
  47. "enablePullDownRefresh": false
  48. }
  49. },
  50. {
  51. "path": "pages/my/history",
  52. "style": {
  53. "navigationBarTitleText": "历史记录",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. {
  58. "path": "pages/my/recharge",
  59. "style": {
  60. "navigationBarTitleText": "充值记录",
  61. "enablePullDownRefresh": false
  62. }
  63. },
  64. {
  65. "path": "pages/my/protocol",
  66. "style": {
  67. "navigationBarTitleText": "用户协议",
  68. "enablePullDownRefresh": false
  69. }
  70. },
  71. {
  72. "path": "pages/sign/index",
  73. "style": {
  74. "navigationBarTitleText": "签到",
  75. "enablePullDownRefresh": false
  76. }
  77. },
  78. {
  79. "path": "pages/member/index",
  80. "style": {
  81. "navigationBarTitleText": "会员",
  82. "enablePullDownRefresh": false
  83. }
  84. },
  85. {
  86. "path": "pages/member/free",
  87. "style": {
  88. "navigationBarTitleText": "会员免费片单",
  89. "enablePullDownRefresh": false
  90. }
  91. }
  92. ],
  93. "globalStyle": {
  94. "navigationBarTextStyle": "white", // black or white
  95. "navigationBarTitleText": "张四爷剧场",
  96. "navigationBarBackgroundColor": "#151728",
  97. "backgroundColor": "#151728"
  98. },
  99. "tabBar": {
  100. "custom": true,
  101. "color": "#8a8a8a",
  102. "selectedColor": "#6EEBE8",
  103. "backgroundColor": "#17162B",
  104. "borderStyle": "black",
  105. "list": [
  106. {
  107. "pagePath": "pages/index/index",
  108. "iconPath": "static/image/tab/home.png",
  109. "selectedIconPath": "static/image/tab/home-HL.png",
  110. "text": "首页"
  111. },
  112. {
  113. "pagePath": "pages/trace/index",
  114. "iconPath": "static/image/tab/trace.png",
  115. "selectedIconPath": "static/image/tab/trace-HL.png",
  116. "text": "追剧"
  117. },
  118. {
  119. "pagePath": "pages/my/index",
  120. "iconPath": "static/image/tab/my.png",
  121. "selectedIconPath": "static/image/tab/my-HL.png",
  122. "text": "我的"
  123. }
  124. ]
  125. }
  126. }