pages.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. "path": "pages/index/dealerPage/index",
  23. "style": {
  24. "navigationBarTitleText": "个人信息"
  25. }
  26. },
  27. {
  28. "path": "pages/index/failPage/index",
  29. "style": {
  30. "navigationBarTitleText": "个人信息"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "科尔卡诺",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. },
  40. "tabBar": {
  41. "color": "#d8d8d8",
  42. "selectedColor": "#4a4a4a",
  43. "borderStyle": "white",
  44. "backgroundColor": "#FFFFFF",
  45. "list": [
  46. {
  47. "pagePath": "pages/index/index",
  48. "iconPath": "/static/tabbar/house-pic-nor.png",
  49. "selectedIconPath": "/static/tabbar/house-pic-active.png",
  50. "text": "首页"
  51. },
  52. {
  53. "pagePath": "pages/index/index",
  54. "iconPath": "/static/tabbar/use-pic-nor.png",
  55. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  56. "text": "个人中心"
  57. }
  58. ]
  59. }
  60. }