pages.json 1.7 KB

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