pages.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "easycom": {
  3. "^u-(.*)": "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. }
  11. },
  12. {
  13. "path": "pages/video/index",
  14. "style": {
  15. "navigationBarTitleText": "视屏"
  16. }
  17. },
  18. {
  19. "path": "pages/order/index",
  20. "style": {
  21. "navigationBarTitleText": "我的订单"
  22. }
  23. },
  24. {
  25. "path": "pages/my/index",
  26. "style": {
  27. "navigationBarTitleText": "个人中心"
  28. }
  29. }
  30. ],
  31. "subPackages": [
  32. {
  33. "root": "orderPages",
  34. "pages": [
  35. {
  36. "path": "orderDetail/index",
  37. "style": {
  38. "navigationBarTitleText": "订单详情",
  39. "enablePullDownRefresh": false
  40. }
  41. }, {
  42. "path": "goodsDetail/index",
  43. "style": {
  44. "navigationBarTitleText": "商品详情",
  45. "enablePullDownRefresh": false
  46. }
  47. }
  48. ]
  49. }
  50. ],
  51. "tabBar": {
  52. "color": "#282828",
  53. "selectedColor": "#B22338",
  54. "borderStyle": "white",
  55. "backgroundColor": "#ffffff",
  56. "list": [{
  57. "pagePath": "pages/index/index",
  58. "iconPath": "static/imageIcon/1-001.png",
  59. "selectedIconPath": "static/imageIcon/1-002.png",
  60. "text": "首页"
  61. },
  62. {
  63. "pagePath": "pages/order/index",
  64. "iconPath": "static/imageIcon/2-001.png",
  65. "selectedIconPath": "static/imageIcon/2-002.png",
  66. "text": "订单"
  67. },
  68. {
  69. "pagePath": "pages/video/index",
  70. "iconPath": "static/imageIcon/3-001.png",
  71. "selectedIconPath": "static/imageIcon/3-002.png",
  72. "text": "视屏",
  73. "enablePullDownRefresh": false
  74. },
  75. {
  76. "pagePath": "pages/my/index",
  77. "iconPath": "static/imageIcon/4-001.png",
  78. "selectedIconPath": "static/imageIcon/4-002.png",
  79. "text": "我的"
  80. }
  81. ]
  82. },
  83. "globalStyle": {
  84. "navigationBarTextStyle": "black",
  85. "navigationBarTitleText": "加载中",
  86. "navigationBarBackgroundColor": "#fff",
  87. "backgroundColor": "#F8F8F8",
  88. "titleNView": false
  89. },
  90. "uniIdRouter": {}
  91. }