pages.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index",
  8. "style": {
  9. "app-plus": {
  10. "titleNView": false
  11. }
  12. }
  13. },
  14. {
  15. "path": "pages/login/index",
  16. "style": {
  17. "navigationBarTitleText": "靖润物流",
  18. "navigationBarBackgroundColor": "#FFFFFF"
  19. }
  20. },
  21. {
  22. "path": "pages/home/index",
  23. "style": {
  24. "navigationBarTitleText": "首页",
  25. "navigationBarBackgroundColor": "#3A63CF",
  26. "navigationBarTextStyle": "white",
  27. "enablePullDownRefresh": true,
  28. "backgroundTextStyle": "dark"
  29. }
  30. },
  31. {
  32. "path": "pages/home/myorder/index",
  33. "style": {
  34. "navigationBarTitleText": "我的订单",
  35. "navigationBarBackgroundColor": "#3A63CF",
  36. "navigationBarTextStyle": "white"
  37. }
  38. },
  39. {
  40. "path": "pages/home/myorder/orderDetails/index",
  41. "style": {
  42. "navigationBarTitleText": "订单详情",
  43. "navigationBarBackgroundColor": "#3A63CF",
  44. "navigationBarTextStyle": "white"
  45. }
  46. },
  47. {
  48. "path": "pages/home/myorder/operation/index",
  49. "style": {
  50. "navigationBarBackgroundColor": "#3A63CF",
  51. "navigationBarTextStyle": "white"
  52. }
  53. }
  54. ],
  55. "globalStyle": {
  56. "navigationBarTextStyle": "black",
  57. "navigationBarTitleText": "靖润物流",
  58. "navigationBarBackgroundColor": "#F8F8F8",
  59. "backgroundColor": "#F8F8F8"
  60. }
  61. }