pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [
  6. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "enablePullDownRefresh": true,
  11. // #ifdef MP
  12. "navigationStyle": "custom",
  13. // #endif
  14. // #ifndef MP
  15. "app-plus": {
  16. "titleNView": false
  17. },
  18. // #endif
  19. "navigationBarTitleText": "星辰"
  20. }
  21. }
  22. ],
  23. "globalStyle": {
  24. "navigationBarTextStyle": "black",
  25. "navigationBarTitleText": "加载中",
  26. "navigationBarBackgroundColor": "#fff",
  27. // "titleNView": false
  28. "backgroundColor": "#F8F8F8"
  29. },
  30. "tabBar": {
  31. "color": "#999",
  32. "selectedColor": "#222",
  33. "borderStyle": "black",
  34. "backgroundColor": "#ffffff",
  35. "list": [{
  36. "pagePath": "pages/index/index",
  37. "iconPath": "static/tabBar/tab-01.png",
  38. "selectedIconPath": "static/tabBar/tab-01-current.png",
  39. "text": "盲盒"
  40. },
  41. {
  42. "pagePath": "pages/goods_cate/goods_cate",
  43. "iconPath": "static/tabBar/tab-02.png",
  44. "selectedIconPath": "static/tabBar/tab-02-current.png",
  45. "text": "娱乐"
  46. },
  47. {
  48. "pagePath": "pages/store_cate/store_cate",
  49. "iconPath": "static/tabBar/tab-03.png",
  50. "selectedIconPath": "static/tabBar/tab-03-current.png",
  51. "text": "联盟"
  52. },
  53. {
  54. "pagePath": "pages/user/index",
  55. "iconPath": "static/tabBar/tab-04.png",
  56. "selectedIconPath": "static/tabBar/tab-04-current.png",
  57. "text": "我的"
  58. }
  59. ]
  60. }
  61. }