pages.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  6. }
  7. },
  8. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  9. {
  10. "path": "pages/tabbar/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/tabbar/order/index",
  17. "style": {
  18. "navigationBarTitleText": "订单"
  19. }
  20. },
  21. {
  22. "path": "pages/tabbar/user/index",
  23. "style": {
  24. "navigationBarTitleText": "我的"
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "uni-app",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8"
  33. },
  34. "tabBar": {
  35. "borderStyle": "white",
  36. "backgroundColor": "white",
  37. "color": "#000",
  38. "selectedColor": "#ef530e",
  39. "list": [{
  40. "pagePath": "pages/tabbar/index/index",
  41. "text": "首页"
  42. },
  43. {
  44. "pagePath": "pages/tabbar/order/index",
  45. "text": "订单"
  46. },
  47. {
  48. "pagePath": "pages/tabbar/user/index",
  49. "text": "我的"
  50. }
  51. ]
  52. },
  53. "uniIdRouter": {}
  54. }