pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/plugins/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. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/user/index",
  15. "style": {
  16. "navigationBarTitleText": "我的",
  17. "navigationStyle": "custom"
  18. }
  19. }
  20. ],
  21. "subPackages": [
  22. {
  23. "root": "pages/login",
  24. "pages": [
  25. {
  26. "path": "index",
  27. "style": {
  28. "navigationBarTitleText": "uni-app"
  29. }
  30. }
  31. ]
  32. },{
  33. "root": "pages/index",
  34. "pages": [
  35. {
  36. "path": "detail",
  37. "style": {
  38. "navigationBarTitleText": "",
  39. "navigationStyle": "custom"
  40. }
  41. }
  42. ]
  43. },{
  44. "root": "pages/order",
  45. "pages": [
  46. {
  47. "path": "index",
  48. "style": {
  49. "navigationBarTitleText": "我的订单",
  50. "navigationStyle": "custom"
  51. }
  52. },
  53. {
  54. "path": "order_confirm",
  55. "style": {
  56. "navigationBarTitleText": "确认购买",
  57. "navigationStyle": "custom"
  58. }
  59. },
  60. {
  61. "path": "orderDetail",
  62. "style": {
  63. "navigationBarTitleText": "订单详情",
  64. "navigationStyle": "custom"
  65. }
  66. },
  67. {
  68. "path": "success",
  69. "style": {
  70. "navigationBarTitleText": "支付成功",
  71. "navigationStyle": "custom"
  72. }
  73. }
  74. ]
  75. }
  76. ],
  77. "tabBar": {
  78. "color": "#9EA3B1",
  79. "selectedColor": "#0D121A",
  80. "borderStyle": "black",
  81. "backgroundColor": "#ffffff",
  82. "list":[
  83. {
  84. "pagePath": "pages/index/index",
  85. "iconPath": "static/image/ic_home_unselected.png",
  86. "selectedIconPath": "static/image/ic_home_selected.png",
  87. "text": "首页"
  88. },
  89. {
  90. "pagePath": "pages/user/index",
  91. "iconPath": "static/image/ic_me_unselected.png",
  92. "selectedIconPath": "static/image/ic_me_selected.png",
  93. "text": "我的"
  94. }
  95. ]
  96. },
  97. "globalStyle": {
  98. "navigationBarTextStyle": "black",
  99. "navigationBarTitleText": "uni-app",
  100. "navigationBarBackgroundColor": "#F8F8F8",
  101. "backgroundColor": "#F8F8F8"
  102. },
  103. "uniIdRouter": {}
  104. }