pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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/index/successPage/index",
  11. "style": {
  12. "navigationBarTitleText": "个人信息"
  13. }
  14. },
  15. {
  16. "path": "pages/index/customPage/index",
  17. "style": {
  18. "navigationBarTitleText": "个人信息"
  19. }
  20. }
  21. ],
  22. "globalStyle": {
  23. "navigationBarTextStyle": "black",
  24. "navigationBarTitleText": "科尔卡诺",
  25. "navigationBarBackgroundColor": "#F8F8F8",
  26. "backgroundColor": "#F8F8F8"
  27. },
  28. "tabBar": {
  29. "color": "#d8d8d8",
  30. "selectedColor": "#4a4a4a",
  31. "borderStyle": "white",
  32. "backgroundColor": "#FFFFFF",
  33. "list": [
  34. {
  35. "pagePath": "pages/index/index",
  36. "iconPath": "/static/tabbar/house-pic-nor.png",
  37. "selectedIconPath": "/static/tabbar/house-pic-active.png",
  38. "text": "首页"
  39. },
  40. {
  41. "pagePath": "pages/index/index",
  42. "iconPath": "/static/tabbar/use-pic-nor.png",
  43. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  44. "text": "个人中心"
  45. }
  46. ]
  47. }
  48. }