pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
  6. "^StatusBarPlaceholder": "@/components/status-bar-placeholder/index.vue"
  7. }
  8. },
  9. "pages": [{
  10. "path": "pages/splash/splash",
  11. "style": {
  12. "navigationBarTitleText": "",
  13. "navigationStyle": "custom",
  14. "navigationBarBackgroundColor": "#1890ff",
  15. "backgroundColor": "#1890ff"
  16. }
  17. },
  18. {
  19. "path": "pages/login/login",
  20. "style": {
  21. "navigationBarTitleText": "登录",
  22. "navigationStyle": "custom"
  23. }
  24. },
  25. {
  26. "path": "pages/index/index",
  27. "style": {
  28. "navigationBarTitleText": "布尔销销乐",
  29. "navigationStyle": "custom"
  30. }
  31. },
  32. {
  33. "path": "pages/todos/index",
  34. "style": {
  35. "navigationBarTitleText": "待办",
  36. "navigationStyle": "custom"
  37. }
  38. },
  39. {
  40. "path": "pages/message/index",
  41. "style": {
  42. "navigationBarTitleText": "消息",
  43. "backgroundColor": "#fff",
  44. "navigationBarBackgroundColor": "#fff"
  45. }
  46. },
  47. {
  48. "path": "pages/stats/index",
  49. "style": {
  50. "navigationBarTitleText": "统计"
  51. }
  52. },
  53. {
  54. "path": "pages/mine/index",
  55. "style": {
  56. "navigationBarTitleText": "我的",
  57. "navigationStyle": "custom"
  58. }
  59. },
  60. {
  61. "path": "pages/test/debug",
  62. "style": {
  63. "navigationBarTitleText": "调试工具"
  64. }
  65. },
  66. {
  67. "path": "pages/test/navbar",
  68. "style": {
  69. "navigationBarTitleText": "导航栏测试",
  70. "navigationStyle": "custom"
  71. }
  72. }
  73. ],
  74. "globalStyle": {
  75. "navigationBarTextStyle": "black",
  76. "navigationBarTitleText": "uni-app",
  77. "navigationBarBackgroundColor": "#F8F8F8",
  78. "backgroundColor": "#F8F8F8",
  79. "app-plus": {
  80. "background": "#efeff4"
  81. }
  82. },
  83. "tabBar": {
  84. "color": "#7A7E83",
  85. "selectedColor": "#4080FF",
  86. "borderStyle": "black",
  87. "backgroundColor": "#ffffff",
  88. "height": "50px",
  89. "fontSize": "10px",
  90. "iconWidth": "24px",
  91. "spacing": "3px",
  92. "list": [{
  93. "pagePath": "pages/index/index",
  94. "text": "首页",
  95. "iconPath": "static/tabbar/tabbar-home.png",
  96. "selectedIconPath": "static/tabbar/tabbar-home-active.png"
  97. },
  98. {
  99. "pagePath": "pages/todos/index",
  100. "text": "待办",
  101. "iconPath": "static/tabbar/tabbar-todo.png",
  102. "selectedIconPath": "static/tabbar/tabbar-todo-active.png"
  103. },
  104. {
  105. "pagePath": "pages/message/index",
  106. "text": "消息",
  107. "iconPath": "static/tabbar/tabbar-message.png",
  108. "selectedIconPath": "static/tabbar/tabbar-message-active.png"
  109. },
  110. {
  111. "pagePath": "pages/mine/index",
  112. "text": "我的",
  113. "iconPath": "static/tabbar/tabbar-mine.png",
  114. "selectedIconPath": "static/tabbar/tabbar-mine-active.png"
  115. }
  116. ]
  117. }
  118. }