pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/user/user",
  6. "style": {
  7. "navigationBarTitleText": "个人中心"
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "星优软件"
  14. }
  15. },
  16. {
  17. "path": "pages/user/order",
  18. "style": {
  19. "navigationBarTitleText": "我的会员"
  20. }
  21. },
  22. {
  23. "path": "pages/user/person",
  24. "style": {
  25. "navigationBarTitleText": "个人资料"
  26. }
  27. },
  28. {
  29. "path": "pages/user/question",
  30. "style": {
  31. "navigationBarTitleText": "常见问题"
  32. }
  33. },
  34. {
  35. "path": "pages/user/questionDetail",
  36. "style": {
  37. "navigationBarTitleText": "常见问题"
  38. }
  39. },
  40. {
  41. "path": "pages/user/help",
  42. "style": {
  43. "navigationBarTitleText": "帮助中心"
  44. }
  45. },
  46. {
  47. "path": "pages/user/helpDetail",
  48. "style": {
  49. "navigationBarTitleText": "帮助中心"
  50. }
  51. }
  52. ],
  53. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "星优软件",
  56. "navigationBarBackgroundColor": "#F8F8F8",
  57. "backgroundColor": "#F8F8F8"
  58. }
  59. }