pages.json 849 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录"
  7. }
  8. },
  9. {
  10. "path": "pages/address/index",
  11. "style": {
  12. "navigationBarTitleText": "我的地址"
  13. }
  14. },
  15. {
  16. "path": "pages/address/add",
  17. "style": {
  18. "navigationBarTitleText": "新增地址"
  19. }
  20. },
  21. {
  22. "path": "pages/cfList/index",
  23. "style": {
  24. "navigationBarTitleText": "中医用药一件事"
  25. }
  26. },
  27. {
  28. "path": "pages/index/index",
  29. "style": {
  30. "navigationBarTitleText": "移动便民查询"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "uni-app",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. },
  40. "uniIdRouter": {}
  41. }