pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. // {
  4. // "path": "pages/index/index",
  5. // "style": {
  6. // "navigationBarTitleText": "彩图奔跑 - 赛事管理端"
  7. // }
  8. // },
  9. {
  10. "path": "pages/actManage/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path" : "pages/actManage/actDetail",
  17. "style" :
  18. {
  19. "navigationBarTitleText" : "赛事详情"
  20. }
  21. },
  22. {
  23. "path" : "pages/actManage/rankList",
  24. "style" :
  25. {
  26. "navigationBarTitleText" : "排行榜"
  27. }
  28. },
  29. {
  30. "path" : "pages/actManage/track",
  31. "style" :
  32. {
  33. "navigationBarTitleText" : "场地直播"
  34. }
  35. },
  36. {
  37. "path": "pages/login/login",
  38. "style": {
  39. "navigationBarTitleText": "登录"
  40. }
  41. },
  42. {
  43. "path": "pages/login/register",
  44. "style": {
  45. "navigationBarTitleText": "注册"
  46. }
  47. },
  48. {
  49. "path": "pages/my/index",
  50. "style": {
  51. "navigationBarTitleText": "我的"
  52. }
  53. },
  54. {
  55. "path": "pages/my/costList",
  56. "style": {
  57. "navigationBarTitleText": "费用明细"
  58. }
  59. },
  60. {
  61. "path": "pages/my/onlinePay",
  62. "style": {
  63. "navigationBarTitleText": "在线充值"
  64. }
  65. },
  66. {
  67. "path": "pages/actCreate/index",
  68. "style": {
  69. "navigationBarTitleText": "自助开赛"
  70. }
  71. },
  72. {
  73. "path": "pages/actCreate/actEdit",
  74. "style": {
  75. "navigationBarTitleText": "赛事修改"
  76. }
  77. },
  78. {
  79. "path" : "pages/actManage/userList",
  80. "style" :
  81. {
  82. "navigationBarTitleText" : "玩家列表"
  83. }
  84. },
  85. {
  86. "path" : "pages/my/contactUs",
  87. "style" :
  88. {
  89. "navigationBarTitleText" : "联系我们"
  90. }
  91. }
  92. ],
  93. "globalStyle": {
  94. "navigationStyle": "custom",
  95. "navigationBarTextStyle": "black",
  96. "navigationBarTitleText": "uni-app",
  97. "navigationBarBackgroundColor": "#F8F8F8",
  98. "backgroundColor": "#F8F8F8"
  99. },
  100. "tabBar": {
  101. "color": "#808080", // tab 上的文字默认颜色
  102. "selectedColor": "#017DC7", // tab 上的文字选中时的颜色
  103. "borderStyle": "black",
  104. "backgroundColor": "#ffffff",
  105. "height": "66px",
  106. "fontSize": "15px",
  107. "iconWidth": "24px",
  108. "spacing": "3px", // 图标和文字的间距
  109. // "iconfontSrc": "static/iconfont.ttf", // app tabbar 字体.ttf文件路径 app 3.4.4+
  110. "list": [{
  111. "pagePath": "pages/actManage/index",
  112. "iconPath": "static/tab/home.png",
  113. "selectedIconPath": "static/tab/home_act.png",
  114. "text": "首页"
  115. }, {
  116. "pagePath": "pages/actCreate/index",
  117. "iconPath": "static/tab/create.png",
  118. "selectedIconPath": "static/tab/create_act.png",
  119. "text": "自助开赛"
  120. }, {
  121. "pagePath": "pages/my/index",
  122. "iconPath": "static/tab/my.png",
  123. "selectedIconPath": "static/tab/my_act.png",
  124. "text": "我的"
  125. }]
  126. },
  127. "uniIdRouter": {}
  128. }