pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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": "success",
  62. "style": {
  63. "navigationBarTitleText": "购买成功",
  64. "navigationStyle": "custom"
  65. }
  66. }
  67. ]
  68. }
  69. ],
  70. "tabBar": {
  71. "color": "#9EA3B1",
  72. "selectedColor": "#0D121A",
  73. "borderStyle": "black",
  74. "backgroundColor": "#ffffff",
  75. "list":[
  76. {
  77. "pagePath": "pages/index/index",
  78. "iconPath": "static/image/ic_home_unselected.png",
  79. "selectedIconPath": "static/image/ic_home_selected.png",
  80. "text": "首页"
  81. },
  82. {
  83. "pagePath": "pages/user/index",
  84. "iconPath": "static/image/ic_me_unselected.png",
  85. "selectedIconPath": "static/image/ic_me_selected.png",
  86. "text": "我的"
  87. }
  88. ]
  89. },
  90. "globalStyle": {
  91. "navigationBarTextStyle": "black",
  92. "navigationBarTitleText": "uni-app",
  93. "navigationBarBackgroundColor": "#F8F8F8",
  94. "backgroundColor": "#F8F8F8"
  95. },
  96. "uniIdRouter": {}
  97. }