pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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/login",
  10. "style": {
  11. "navigationBarTitleText": "极创社剧场",
  12. "enablePullDownRefresh": false
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "white", // black or white
  18. "navigationBarTitleText": "极创社",
  19. "navigationBarBackgroundColor": "#151728",
  20. "backgroundColor": "#151728"
  21. },
  22. "tabBar": {
  23. "custom": true,
  24. "color": "#8a8a8a",
  25. "selectedColor": "#6EEBE8",
  26. "backgroundColor": "#17162B",
  27. "borderStyle": "black",
  28. "list": [
  29. {
  30. "pagePath": "pages/index/index",
  31. "iconPath": "static/image/tab/home.png",
  32. "selectedIconPath": "static/image/tab/home-HL.png",
  33. "text": "极创社"
  34. },
  35. {
  36. "pagePath": "pages/trace/index",
  37. "iconPath": "static/image/tab/trace.png",
  38. "selectedIconPath": "static/image/tab/trace-HL.png",
  39. "text": "极创社"
  40. },
  41. {
  42. "pagePath": "pages/my/index",
  43. "iconPath": "static/image/tab/my.png",
  44. "selectedIconPath": "static/image/tab/my-HL.png",
  45. "text": "极创社"
  46. }
  47. ]
  48. }
  49. }