pages.json 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/future/index",
  11. "style": {
  12. "navigationBarTitleText": "人生报告"
  13. }
  14. },
  15. {
  16. "path": "pages/forecast/index",
  17. "style": {
  18. "navigationBarTitleText": "预测结果"
  19. }
  20. },
  21. {
  22. "path": "pages/forecastHistory/index",
  23. "style": {
  24. "navigationBarTitleText": "预测结果历史"
  25. }
  26. },
  27. {
  28. "path": "pages/terminology/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. "condition": {
  41. "current": 0,
  42. "list": [
  43. {
  44. "name": "预测结果",
  45. "path": "pages/forecast/index"
  46. }
  47. ]
  48. }
  49. }