pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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/login/index",
  12. "style": {
  13. "navigationBarTitleText": "登陆",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/tabbar/index/index",
  19. "style": {
  20. "navigationBarTitleText": "首页",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/tabbar/order/index",
  26. "style": {
  27. "navigationBarTitleText": "订单",
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/tabbar/user/index",
  33. "style": {
  34. "navigationBarTitleText": "我的"
  35. }
  36. }
  37. ],
  38. "subpackages":[
  39. {
  40. "root": "pages_module",
  41. "name":"pages_module",
  42. "pages":[
  43. {
  44. "path": "scanCode/index",
  45. "style": {
  46. "navigationBarTitleText": "扫码验劵",
  47. "enablePullDownRefresh": true,
  48. "navigationStyle":"custom"
  49. }
  50. },
  51. {
  52. "path": "scanCoupons/index",
  53. "style": {
  54. "navigationBarTitleText": "输码验劵",
  55. "enablePullDownRefresh": true,
  56. "navigationStyle":"custom"
  57. }
  58. },
  59. {
  60. "path": "orderVerifica/index",
  61. "style": {
  62. "navigationBarTitleText": "订单核销",
  63. "enablePullDownRefresh": true,
  64. "navigationStyle":"custom"
  65. }
  66. }
  67. ]
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "uni-app",
  73. "navigationBarBackgroundColor": "#F8F8F8",
  74. "backgroundColor": "#F8F8F8"
  75. },
  76. "tabBar": {
  77. "borderStyle": "white",
  78. "backgroundColor": "white",
  79. "color": "#000",
  80. "selectedColor": "#ef530e",
  81. "list": [
  82. {
  83. "pagePath": "pages/tabbar/index/index",
  84. "text": "首页",
  85. "iconPath": "static/image/tab-icon/home.png",
  86. "selectedIconPath": "static/image/tab-icon/home-active.png"
  87. },
  88. {
  89. "pagePath": "pages/tabbar/order/index",
  90. "text": "订单",
  91. "iconPath": "static/image/tab-icon/order.png",
  92. "selectedIconPath": "static/image/tab-icon/order-active.png"
  93. },
  94. {
  95. "pagePath": "pages/tabbar/user/index",
  96. "text": "我的",
  97. "iconPath": "static/image/tab-icon/user.png",
  98. "selectedIconPath": "static/image/tab-icon/user-active.png"
  99. }
  100. ]
  101. },
  102. "uniIdRouter": {}
  103. }