pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue",
  4. "layout": "@/layout/index.vue"
  5. },
  6. "pages": [
  7. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/index/index",
  10. "style": {
  11. "navigationBarTitleText": "张四爷剧场",
  12. "enablePullDownRefresh": false
  13. }
  14. },
  15. {
  16. "path": "pages/trace/index",
  17. "style": {
  18. "navigationBarTitleText": "追剧",
  19. "enablePullDownRefresh": false
  20. }
  21. },
  22. {
  23. "path": "pages/my/index",
  24. "style": {
  25. "navigationBarTitleText": "我的",
  26. "enablePullDownRefresh": false
  27. }
  28. }
  29. ],
  30. "globalStyle": {
  31. "navigationBarTextStyle": "white", // black or white
  32. "navigationBarTitleText": "张四爷剧场",
  33. "navigationBarBackgroundColor": "#151728",
  34. "backgroundColor": "#151728"
  35. },
  36. "tabBar": {
  37. "custom": true,
  38. "color": "#8a8a8a",
  39. "selectedColor": "#6EEBE8",
  40. "backgroundColor": "#17162B",
  41. "borderStyle": "black",
  42. "list": [
  43. {
  44. "pagePath": "pages/index/index",
  45. "iconPath": "static/image/tab/home.png",
  46. "selectedIconPath": "static/image/tab/home-HL.png",
  47. "text": "首页"
  48. },
  49. {
  50. "pagePath": "pages/trace/index",
  51. "iconPath": "static/image/tab/trace.png",
  52. "selectedIconPath": "static/image/tab/trace-HL.png",
  53. "text": "追剧"
  54. },
  55. {
  56. "pagePath": "pages/my/index",
  57. "iconPath": "static/image/tab/my.png",
  58. "selectedIconPath": "static/image/tab/my-HL.png",
  59. "text": "我的"
  60. }
  61. ]
  62. }
  63. }