pages.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. "^fg-(.*)": "@/components/fg-$1/fg-$1.vue",
  13. "^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue",
  14. "^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue"
  15. }
  16. },
  17. "tabBar": {},
  18. "pages": [
  19. {
  20. "path": "pages/index/index",
  21. "type": "home",
  22. "style": {
  23. "navigationStyle": "custom",
  24. "navigationBarTitleText": "首页"
  25. }
  26. },
  27. {
  28. "path": "pages/about/about",
  29. "type": "page",
  30. "style": {
  31. "navigationBarTitleText": "关于"
  32. }
  33. },
  34. {
  35. "path": "pages/about/alova",
  36. "type": "page",
  37. "style": {
  38. "navigationBarTitleText": "Alova 演示"
  39. }
  40. },
  41. {
  42. "path": "pages/about/vue-query",
  43. "type": "page",
  44. "style": {
  45. "navigationBarTitleText": "Vue Query 演示"
  46. }
  47. },
  48. {
  49. "path": "pages/login/login",
  50. "type": "page",
  51. "style": {
  52. "navigationBarTitleText": "登录"
  53. }
  54. },
  55. {
  56. "path": "pages/login/register",
  57. "type": "page",
  58. "style": {
  59. "navigationBarTitleText": "注册"
  60. }
  61. },
  62. {
  63. "path": "pages/me/me",
  64. "type": "page",
  65. "style": {
  66. "navigationBarTitleText": "我的"
  67. }
  68. }
  69. ],
  70. "subPackages": [
  71. {
  72. "root": "pages-sub",
  73. "pages": [
  74. {
  75. "path": "demo/index",
  76. "type": "page",
  77. "style": {
  78. "navigationBarTitleText": "分包页面"
  79. }
  80. }
  81. ]
  82. }
  83. ]
  84. }