pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "盛和垂钓园"
  7. }
  8. },
  9. {
  10. "path": "pages/pay/pay",
  11. "style": {
  12. "navigationBarTitleText": "盛和垂钓园"
  13. }
  14. },
  15. {
  16. "path": "pages/mine/mine",
  17. "style": {
  18. "navigationBarTitleText": "我的预约"
  19. }
  20. },
  21. {
  22. "path": "pages/userInfo/userInfo",
  23. "style": {
  24. "navigationBarTitleText": "用户授权"
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "uni-app",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8"
  33. },
  34. "tabBar":{
  35. "color":"black",
  36. "borderStyle":"white",
  37. "backgroundColor":"white",
  38. "list": [{
  39. "pagePath": "pages/index/index",
  40. "iconPath": "static/logo.png",
  41. "selectedIconPath": "static/logo.png",
  42. "text": "首页"
  43. }, {
  44. "pagePath": "pages/mine/mine",
  45. "iconPath": "static/logo.png",
  46. "selectedIconPath": "static/logo.png",
  47. "text": "我的"
  48. }]
  49. }
  50. }