pages.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "globalStyle": {
  3. "navigationStyle": "default",
  4. "navigationBarTitleText": "vue3-uniapp",
  5. "navigationBarBackgroundColor": "#f8f8f8",
  6. "navigationBarTextStyle": "black",
  7. "backgroundColor": "#FFFFFF"
  8. },
  9. "easycom": {
  10. "autoscan": true,
  11. "custom": {
  12. "^fly-(.*)": "@/components/fly-$1/fly-$1.vue",
  13. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  14. }
  15. },
  16. "tabBar": {
  17. "color": "#999999",
  18. "selectedColor": "#018d71",
  19. "backgroundColor": "#F8F8F8",
  20. "borderStyle": "black",
  21. "height": "50px",
  22. "fontSize": "10px",
  23. "iconWidth": "24px",
  24. "spacing": "3px",
  25. "list": [
  26. {
  27. "iconPath": "static/tabbar/home.png",
  28. "selectedIconPath": "static/tabbar/homeHL.png",
  29. "pagePath": "pages/index/index",
  30. "text": "首页"
  31. },
  32. {
  33. "iconPath": "static/tabbar/personal.png",
  34. "selectedIconPath": "static/tabbar/personalHL.png",
  35. "pagePath": "pages/my/index",
  36. "text": "我的"
  37. }
  38. ]
  39. },
  40. "pages": [
  41. {
  42. "path": "pages/index/index",
  43. "type": "home",
  44. "style": {
  45. "navigationBarTitleText": "首页"
  46. }
  47. },
  48. {
  49. "path": "pages/login/index",
  50. "type": "page",
  51. "style": {
  52. "navigationBarTitleText": "登录"
  53. }
  54. },
  55. {
  56. "path": "pages/my/index",
  57. "type": "page",
  58. "style": {
  59. "navigationBarTitleText": "我的"
  60. }
  61. }
  62. ],
  63. "subPackages": []
  64. }