pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "globalStyle": {
  3. "navigationStyle": "default",
  4. "navigationBarTitleText": "unibest",
  5. "navigationBarBackgroundColor": "#f8f8f8",
  6. "navigationBarTextStyle": "black",
  7. "backgroundColor": "#FFFFFF"
  8. },
  9. "easycom": {
  10. "autoscan": true,
  11. "custom": {
  12. "^uv-(.*)": "@climblee/uv-ui/components/uv-$1/uv-$1.vue"
  13. }
  14. },
  15. "tabBar": {
  16. "color": "#999999",
  17. "selectedColor": "#018d71",
  18. "backgroundColor": "#F8F8F8",
  19. "borderStyle": "black",
  20. "height": "50px",
  21. "fontSize": "10px",
  22. "iconWidth": "24px",
  23. "spacing": "3px",
  24. "list": [
  25. {
  26. "iconPath": "static/tabbar/home.png",
  27. "selectedIconPath": "static/tabbar/homeHL.png",
  28. "pagePath": "pages/index/index",
  29. "text": "首页"
  30. },
  31. {
  32. "iconPath": "static/tabbar/example.png",
  33. "selectedIconPath": "static/tabbar/exampleHL.png",
  34. "pagePath": "pages/index/about",
  35. "text": "关于"
  36. }
  37. ]
  38. },
  39. "pages": [
  40. {
  41. "path": "pages/index/index",
  42. "type": "home",
  43. "style": {
  44. "navigationStyle": "custom",
  45. "navigationBarTitleText": "首页"
  46. }
  47. },
  48. {
  49. "path": "pages/index/about",
  50. "type": "page",
  51. "style": {
  52. "navigationBarTitleText": "关于"
  53. }
  54. }
  55. ],
  56. "subPackages": [
  57. {
  58. "root": "pages-sub",
  59. "pages": [
  60. {
  61. "path": "demo/index",
  62. "type": "page",
  63. "style": {
  64. "navigationBarTitleText": "分包页面 标题"
  65. }
  66. }
  67. ]
  68. }
  69. ]
  70. }