pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/my/index",
  15. "style": {
  16. "navigationBarTitleText": "我的",
  17. "navigationStyle": "custom"
  18. }
  19. }
  20. ],
  21. "subPackages": [{
  22. "root": "pages/play",
  23. "pages": [{
  24. "path": "/index",
  25. "style": {
  26. "navigationBarTitleText": "播放",
  27. "navigationStyle": "custom"
  28. }
  29. }]
  30. },{
  31. "root": "pages/login",
  32. "pages": [{
  33. "path": "/index",
  34. "style": {
  35. "navigationBarTitleText": "登录",
  36. "navigationStyle": "custom"
  37. }
  38. }]
  39. },{
  40. "root": "pages/history",
  41. "pages": [{
  42. "path": "/index",
  43. "style": {
  44. "navigationBarTitleText": "观看历史",
  45. "navigationStyle": "custom"
  46. }
  47. }]
  48. },{
  49. "root": "pages/search",
  50. "pages": [{
  51. "path": "/index",
  52. "style": {
  53. "navigationBarTitleText": "搜索",
  54. "navigationStyle": "custom"
  55. }
  56. }]
  57. }],
  58. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "uni-app",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F8F8F8"
  63. },
  64. "tabBar": {
  65. "color": "#86899B",
  66. "selectedColor": "#1296db",
  67. "borderStyle": "black",
  68. "backgroundColor": "#ffffff",
  69. "list": [{
  70. "pagePath": "pages/index/index",
  71. "iconPath": "/static/image/home.png",
  72. "selectedIconPath": "/static/image/home_select.png",
  73. "text": "首页"
  74. }, {
  75. "pagePath": "pages/my/index",
  76. "iconPath": "/static/image/my.png",
  77. "selectedIconPath": "/static/image/my_select.png",
  78. "text": "我的"
  79. }]
  80. },
  81. "uniIdRouter": {}
  82. }