pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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/order_addcart/order_addcart",
  11. "style": {
  12. "navigationBarTitleText": "购物车"
  13. }
  14. },
  15. {
  16. "path": "pages/user/index",
  17. "style": {
  18. "navigationBarTitleText": "个人中心"
  19. }
  20. }
  21. ],
  22. "subPackages": [
  23. {
  24. "root": "pages/users",
  25. "name": "users",
  26. "pages": [
  27. {
  28. "path": "order_list/index",
  29. "style": {
  30. "navigationBarTitleText": "我的订单",
  31. "navigationBarBackgroundColor": "#e93323",
  32. "navigationBarTextStyle": "black"
  33. }
  34. }
  35. ]
  36. }
  37. ],
  38. "globalStyle": {
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "navigationBarTextStyle": "black",
  41. "navigationBarTitleText": "水贝商城",
  42. "backgroundColor": "#ffe079"
  43. },
  44. "tabBar": {
  45. "color": "#282828",
  46. "selectedColor": "#CD9933",
  47. "borderStyle": "black",
  48. "backgroundColor": "#ffffff",
  49. "list": [
  50. {
  51. "pagePath": "pages/index/index",
  52. "iconPath": "static/images/tabbar/1-001.png",
  53. "selectedIconPath": "static/images/tabbar/1-002.png",
  54. "text": "首页"
  55. },
  56. {
  57. "pagePath": "pages/order_addcart/order_addcart",
  58. "iconPath": "static/images/tabbar/3-001.png",
  59. "selectedIconPath": "static/images/tabbar/3-002.png",
  60. "text": "购物车"
  61. },
  62. {
  63. "pagePath": "pages/user/index",
  64. "iconPath": "static/images/tabbar/4-001.png",
  65. "selectedIconPath": "static/images/tabbar/4-002.png",
  66. "text": "我的"
  67. }
  68. ]
  69. },
  70. "uniIdRouter": {}
  71. }