pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  6. }
  7. },
  8. "pages": [
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "团蜂名片",
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path": "pages/user/user",
  18. "style": {
  19. "navigationBarTitleText": "我的",
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/login/login",
  25. "style": {
  26. "navigationBarTitleText": "登录"
  27. }
  28. },
  29. {
  30. "path": "pages/login/register",
  31. "style": {
  32. "navigationBarTitleText": "注册"
  33. }
  34. }
  35. ],
  36. "subPackages": [
  37. {
  38. "root": "another-tf",
  39. "pages": [
  40. {
  41. "path": "another-user/calling-card/agree",
  42. "style": {
  43. "navigationBarTitleText": "用户协议"
  44. }
  45. },
  46. {
  47. "path": "another-user/calling-card/edit",
  48. "style": {
  49. "navigationBarTitleText": "编辑名片"
  50. }
  51. }
  52. ]
  53. }
  54. ],
  55. "tabBar": {
  56. "selectedColor": "#E95D20",
  57. "backgroundColor": "#fff",
  58. "color": "#3D3D3D",
  59. "borderStyle": "white",
  60. "iconWidth": "28px",
  61. "height": "60px",
  62. "list": [
  63. {
  64. "pagePath": "pages/index/index",
  65. "text": "名片",
  66. "iconPath": "/static/images/tabbar/furniture.png",
  67. "selectedIconPath": "/static/images/tabbar/furniture-active.png"
  68. },
  69. {
  70. "pagePath": "pages/user/user",
  71. "text": "我的",
  72. "iconPath": "/static/images/tabbar/mine.png",
  73. "selectedIconPath": "/static/images/tabbar/mine-active.png"
  74. }
  75. ]
  76. },
  77. "globalStyle": {
  78. "backgroundTextStyle": "light",
  79. "navigationBarBackgroundColor": "#FFFFFF",
  80. "navigationBarTitleText": "uni-card",
  81. "navigationBarTextStyle": "black",
  82. "titleNView": false,
  83. "app-plus": {
  84. "animationType": "slide-in-right",
  85. "animationDuration": 300
  86. }
  87. }
  88. }