pages.json 786 B

123456789101112131415161718192021222324252627
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/returnedInfo/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "退差价单明细",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path" : "pages/payment/payment",
  13. "style" :
  14. {
  15. "navigationBarTitleText": "支付成功",
  16. "enablePullDownRefresh": false
  17. }
  18. }
  19. ],
  20. "globalStyle": {
  21. "navigationBarTextStyle": "black",
  22. "navigationStyle": "custom",
  23. "app-plus": {
  24. "scrollIndicator": "none"
  25. }
  26. }
  27. }