pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$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. "path": "pages/index/request",
  57. "type": "page",
  58. "layout": "demo",
  59. "style": {
  60. "navigationBarTitleText": "请求"
  61. }
  62. }
  63. ],
  64. "subPackages": [
  65. {
  66. "root": "pages-sub",
  67. "pages": [
  68. {
  69. "path": "demo/index",
  70. "type": "page",
  71. "style": {
  72. "navigationBarTitleText": "分包页面 标题"
  73. }
  74. }
  75. ]
  76. }
  77. ]
  78. }