pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "subPackages": [
  31. {
  32. "root": "user",
  33. "pages": [
  34. {
  35. "path": "account/agree/agree",
  36. "style": {
  37. "navigationBarTitleText": "用户协议"
  38. }
  39. },
  40. {
  41. "path": "service/edit/edit",
  42. "style": {
  43. "navigationBarTitleText": "编辑名片"
  44. }
  45. }
  46. ]
  47. }
  48. ],
  49. "tabBar": {
  50. "selectedColor": "#E95D20",
  51. "backgroundColor": "#fff",
  52. "color": "#3D3D3D",
  53. "borderStyle": "white",
  54. "iconWidth": "28px",
  55. "height": "60px",
  56. "list": [
  57. {
  58. "pagePath": "pages/index/index",
  59. "text": "名片",
  60. "iconPath": "/static/images/tabbar/furniture.png",
  61. "selectedIconPath": "/static/images/tabbar/furniture-active.png"
  62. },
  63. {
  64. "pagePath": "pages/user/user",
  65. "text": "我的",
  66. "iconPath": "/static/images/tabbar/mine.png",
  67. "selectedIconPath": "/static/images/tabbar/mine-active.png"
  68. }
  69. ]
  70. },
  71. "globalStyle": {
  72. "backgroundTextStyle": "light",
  73. "navigationBarBackgroundColor": "#FFFFFF",
  74. "navigationBarTitleText": "uni-card",
  75. "navigationBarTextStyle": "black",
  76. "titleNView": false,
  77. "app-plus": {
  78. "animationType": "slide-in-right",
  79. "animationDuration": 300
  80. }
  81. }
  82. }