pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页"
  10. }
  11. }, {
  12. "path": "pages/introduce/introduce",
  13. "style": {
  14. "navigationBarTitleText": "活动介绍",
  15. "enablePullDownRefresh": false,
  16. "navigationStyle": "custom"
  17. }
  18. }, {
  19. "path": "pages/rank/rank",
  20. "style": {
  21. "navigationBarTitleText": "排行榜",
  22. "enablePullDownRefresh": false,
  23. "navigationStyle": "custom"
  24. }
  25. }
  26. ,{
  27. "path" : "pages/mine/mine",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "我的",
  31. "enablePullDownRefresh": false
  32. }
  33. }
  34. ,{
  35. "path" : "pages/shop/shop",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "积分商城",
  39. "enablePullDownRefresh": false,
  40. "navigationStyle":"custom"
  41. }
  42. }
  43. ,{
  44. "path" : "pages/activity/activityDetail",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "作品详情",
  48. "enablePullDownRefresh": false
  49. }
  50. }
  51. ],
  52. "tabBar": {
  53. "color": "#555555",
  54. "backgroundColor": "#FFFFFF",
  55. "borderStyle": "white",
  56. "selectedColor": "#222222",
  57. "list": [
  58. {
  59. "pagePath": "pages/index/index",
  60. "text": "首页",
  61. "selectedIconPath": "static/tarbar/shouye.png",
  62. "iconPath": "static/tarbar/shouye0.png"
  63. },
  64. {
  65. "pagePath": "pages/shop/shop",
  66. "text": "商城",
  67. "selectedIconPath": "static/tarbar/shangcheng.png",
  68. "iconPath": "static/tarbar/shangcheng0.png"
  69. },
  70. {
  71. "pagePath": "pages/mine/mine",
  72. "text": "我的",
  73. "selectedIconPath": "static/tarbar/wode.png",
  74. "iconPath": "static/tarbar/wode0.png"
  75. }
  76. ]
  77. },
  78. "globalStyle": {
  79. "navigationBarTextStyle": "black",
  80. "navigationBarTitleText": "uni-app",
  81. "navigationBarBackgroundColor": "#F8F8F8",
  82. "backgroundColor": "#F8F8F8"
  83. }
  84. }