pages.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. ]
  43. }
  44. ],
  45. "tabBar": {
  46. "color": "#282828",
  47. "selectedColor": "#B22338",
  48. "borderStyle": "white",
  49. "backgroundColor": "#ffffff",
  50. "list": [{
  51. "pagePath": "pages/index/index",
  52. "iconPath": "static/imageIcon/1-001.png",
  53. "selectedIconPath": "static/imageIcon/1-002.png",
  54. "text": "首页"
  55. },
  56. {
  57. "pagePath": "pages/order/index",
  58. "iconPath": "static/imageIcon/2-001.png",
  59. "selectedIconPath": "static/imageIcon/2-002.png",
  60. "text": "订单"
  61. },
  62. {
  63. "pagePath": "pages/video/index",
  64. "iconPath": "static/imageIcon/3-001.png",
  65. "selectedIconPath": "static/imageIcon/3-002.png",
  66. "text": "视屏",
  67. "enablePullDownRefresh": false
  68. },
  69. {
  70. "pagePath": "pages/my/index",
  71. "iconPath": "static/imageIcon/4-001.png",
  72. "selectedIconPath": "static/imageIcon/4-002.png",
  73. "text": "我的"
  74. }
  75. ]
  76. },
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "加载中",
  80. "navigationBarBackgroundColor": "#fff",
  81. "backgroundColor": "#F8F8F8",
  82. "titleNView": false
  83. },
  84. "uniIdRouter": {}
  85. }