pages.json 740 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login",
  5. "style": {
  6. "navigationBarTitleText": "登录"
  7. }
  8. },
  9. {
  10. "path": "pages/index",
  11. "style": {
  12. "navigationBarTitleText": "我的收益"
  13. }
  14. },
  15. {
  16. "path": "pages/dayIncome",
  17. "style": {
  18. "navigationBarTitleText": "日收益列表"
  19. }
  20. },
  21. {
  22. "path": "pages/collectionNum",
  23. "style": {
  24. "navigationBarTitleText": "收款记录"
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "沃骑怡行",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8"
  33. }
  34. }