pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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/category/category",
  11. "style": {
  12. "navigationBarTitleText": "分类"
  13. }
  14. },
  15. {
  16. "path": "pages/cart/cart",
  17. "style": {
  18. "navigationBarTitleText": "购物车"
  19. }
  20. },
  21. {
  22. "path": "pages/user/user",
  23. "style": {
  24. "navigationBarTitleText": "我的"
  25. }
  26. },
  27. {
  28. "path": "pages/login/login",
  29. "style": {
  30. "navigationBarTitleText": "账号登录"
  31. }
  32. },
  33. {
  34. "path": "pages/register/register",
  35. "style": {
  36. "navigationBarTitleText": "注册账号"
  37. }
  38. },
  39. {
  40. "path": "pages/forgot/forgot",
  41. "style": {
  42. "navigationBarTitleText": "忘记密码"
  43. }
  44. },
  45. {
  46. "path": "pages/profile/profile",
  47. "style": {
  48. "navigationBarTitleText": "个人资料"
  49. }
  50. }
  51. ],
  52. "tabBar": {
  53. "selectedColor": "#333333",
  54. "color": "#bfbfbf",
  55. "list": [
  56. {
  57. "pagePath": "pages/index/index",
  58. "text": "首页",
  59. "iconPath": "/static/images/tabbar/index.png",
  60. "selectedIconPath": "/static/images/tabbar/index-active.png"
  61. },
  62. {
  63. "pagePath": "pages/category/category",
  64. "text": "分类",
  65. "iconPath": "/static/images/tabbar/category.png",
  66. "selectedIconPath": "/static/images/tabbar/category-active.png"
  67. },
  68. {
  69. "pagePath": "pages/cart/cart",
  70. "text": "购物车",
  71. "iconPath": "/static/images/tabbar/cart.png",
  72. "selectedIconPath": "/static/images/tabbar/cart-active.png"
  73. },
  74. {
  75. "pagePath": "pages/user/user",
  76. "text": "我的",
  77. "iconPath": "/static/images/tabbar/user.png",
  78. "selectedIconPath": "/static/images/tabbar/user-active.png"
  79. }
  80. ]
  81. },
  82. "globalStyle": {
  83. "navigationStyle": "custom",//取消默认导航栏
  84. "navigationBarTextStyle": "white",
  85. "navigationBarTitleText": "yudao-ui-app",
  86. "navigationBarBackgroundColor": "#F8F8F8",
  87. "backgroundColor": "#FFFFFF"
  88. }
  89. }