pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "app-plus": {
  8. "titleNView": false
  9. }
  10. }
  11. },
  12. {
  13. "path": "pages/index/wechat",
  14. "style": {
  15. "navigationBarTitleText": "登录",
  16. "app-plus": {
  17. "titleNView": false
  18. }
  19. }
  20. },
  21. {
  22. "path": "pages/index/order",
  23. "style": {
  24. "navigationBarTitleText": "确认订单",
  25. "app-plus": {
  26. "titleNView": false
  27. }
  28. }
  29. },
  30. {
  31. "path": "pages/user/index",
  32. "style": {
  33. "navigationBarTitleText": "我的",
  34. "app-plus": {
  35. "titleNView": false
  36. }
  37. }
  38. },
  39. {
  40. "path": "pages/address/index",
  41. "style": {
  42. "navigationBarTitleText": "收货地址",
  43. "enablePullDownRefresh": true,
  44. "app-plus": {
  45. "titleNView": false
  46. }
  47. }
  48. },
  49. {
  50. "path": "pages/address/select",
  51. "style": {
  52. "navigationBarTitleText": "选择收货地址",
  53. "app-plus": {
  54. "titleNView": false
  55. }
  56. }
  57. },
  58. {
  59. "path": "pages/address/add",
  60. "style": {
  61. "navigationBarTitleText": "新增收货地址",
  62. "app-plus": {
  63. "titleNView": false
  64. }
  65. }
  66. },
  67. {
  68. "path": "pages/order/index",
  69. "style": {
  70. "navigationBarTitleText": "我的订单",
  71. "enablePullDownRefresh": true,
  72. "app-plus": {
  73. "titleNView": false
  74. }
  75. }
  76. },
  77. {
  78. "path": "pages/order/detail",
  79. "style": {
  80. "navigationBarTitleText": "订单详情",
  81. "app-plus": {
  82. "titleNView": false
  83. }
  84. }
  85. }
  86. ],
  87. "globalStyle": {
  88. "navigationBarTextStyle": "white",
  89. "navigationBarTitleText": "柏森点餐",
  90. "navigationBarBackgroundColor": "#50ACF9",
  91. "backgroundColor": "#50ACF9"
  92. }
  93. }