pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "globalStyle": {
  32. "navigationBarTextStyle": "black",
  33. "navigationBarTitleText": "uni-app",
  34. "navigationBarBackgroundColor": "#F8F8F8",
  35. "backgroundColor": "#F8F8F8"
  36. },
  37. "tabBar": {
  38. "color": "#86899B",
  39. "selectedColor": "#1296db",
  40. "borderStyle": "black",
  41. "backgroundColor": "#ffffff",
  42. "list": [{
  43. "pagePath": "pages/index/index",
  44. "iconPath": "/static/image/home.png",
  45. "selectedIconPath": "/static/image/home_select.png",
  46. "text": "首页"
  47. }, {
  48. "pagePath": "pages/my/index",
  49. "iconPath": "/static/image/my.png",
  50. "selectedIconPath": "/static/image/my_select.png",
  51. "text": "我的"
  52. }]
  53. },
  54. "uniIdRouter": {}
  55. }