pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/index/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "商品详情",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path" : "pages/information/information",
  13. "style" :
  14. {
  15. "navigationBarTitleText": "购买信息",
  16. "enablePullDownRefresh": false
  17. }
  18. },
  19. {
  20. "path" : "pages/address/address",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "收货人地址",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path" : "pages/orderPlacer/orderPlacer",
  29. "style" :
  30. {
  31. "navigationBarTitleText": "下单人",
  32. "enablePullDownRefresh": false
  33. }
  34. },
  35. {
  36. "path": "pages/phone-area/phone-area",
  37. "style": {
  38. "navigationBarTitleText": "选择国家/地区"
  39. }
  40. },
  41. {
  42. "path": "pages/orderDetail/detail",
  43. "style": {
  44. "navigationBarTitleText": "订单详情"
  45. }
  46. },
  47. {
  48. "path": "pages/pay-status/pay-status",
  49. "style": {
  50. "navigationBarTitleText": "下单成功"
  51. }
  52. }
  53. ],
  54. "globalStyle": {
  55. "navigationBarTextStyle": "black",
  56. "navigationStyle": "custom",
  57. "app-plus": {
  58. "scrollIndicator": "none"
  59. }
  60. }
  61. }