pages.json 995 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom",
  7. "navigationBarTitleText": "Charge WebAPP Lite"
  8. }
  9. },
  10. {
  11. "path": "pages/charge/index",
  12. "style": {
  13. "navigationStyle": "custom",
  14. "navigationBarTitleText": "Charge",
  15. "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path": "pages/receipt/index",
  20. "style": {
  21. "navigationStyle": "custom",
  22. "navigationBarTitleText": "Receipt"
  23. }
  24. },
  25. {
  26. "path": "pages/index/payment",
  27. "style": {
  28. "navigationStyle": "custom",
  29. "navigationBarTitleText": "Payment"
  30. }
  31. }
  32. ],
  33. "globalStyle": {
  34. "navigationBarTextStyle": "black",
  35. "navigationBarTitleText": "uni-app",
  36. "navigationBarBackgroundColor": "#FFFFFF",
  37. "backgroundColor": "#F8F8F8"
  38. },
  39. "uniIdRouter": {}
  40. }