pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/tabbar/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/tabbar/shipyard/shipyard",
  11. "style": {
  12. "navigationBarTitleText": "uni-app"
  13. }
  14. },
  15. {
  16. "path": "pages/tabbar/release/release",
  17. "style": {
  18. "navigationBarTitleText": "uni-app"
  19. }
  20. },
  21. {
  22. "path": "pages/tabbar/shop/shop",
  23. "style": {
  24. "navigationBarTitleText": "uni-app"
  25. }
  26. },
  27. {
  28. "path": "pages/tabbar/mine/mine",
  29. "style": {
  30. "navigationBarTitleText": "uni-app"
  31. }
  32. }
  33. ],
  34. "tabBar": {
  35. "borderStyle": "black",
  36. "backgroundColor": "#333",
  37. "color": "#8F8F94",
  38. "selectedColor": "#f33e54",
  39. "list": [{
  40. "pagePath": "pages/tabbar/index/index",
  41. "iconPath": "static/images/tabbar/home-1.png",
  42. "selectedIconPath": "static/images/tabbar/home-2.png",
  43. "text": "首页"
  44. },
  45. {
  46. "pagePath": "pages/tabbar/shipyard/shipyard",
  47. "iconPath": "static/images/tabbar/shipyard-1.png",
  48. "selectedIconPath": "static/images/tabbar/shipyard-2.png",
  49. "text": "船厂"
  50. },
  51. {
  52. "pagePath": "pages/tabbar/release/release",
  53. "iconPath": "static/images/tabbar/release.png",
  54. "selectedIconPath": "static/images/tabbar/release.png",
  55. "text": "发布"
  56. },
  57. {
  58. "pagePath": "pages/tabbar/shop/shop",
  59. "iconPath": "static/images/tabbar/shop-1.png",
  60. "selectedIconPath": "static/images/tabbar/shop-1.png",
  61. "text": "商城"
  62. },
  63. {
  64. "pagePath": "pages/tabbar/mine/mine",
  65. "iconPath": "static/images/tabbar/mine-1.png",
  66. "selectedIconPath": "static/images/tabbar/mine-2.png",
  67. "text": "我的"
  68. }
  69. ]
  70. },
  71. "globalStyle": {
  72. "navigationBarTextStyle": "black",
  73. "navigationBarTitleText": "uni-app",
  74. "navigationBarBackgroundColor": "#F8F8F8",
  75. "backgroundColor": "#F8F8F8"
  76. },
  77. "uniIdRouter": {}
  78. }