pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/login/login",
  11. "style": {
  12. "navigationBarTitleText": ""
  13. }
  14. },
  15. {
  16. "path": "pages/privacy/privacy",
  17. "style": {
  18. "navigationBarTitleText": ""
  19. }
  20. },
  21. {
  22. "path": "pages/home/index",
  23. "style": {
  24. "navigationBarTitleText": ""
  25. }
  26. },
  27. {
  28. "path": "pages/contacts/index",
  29. "style": {
  30. "navigationBarTitleText": ""
  31. }
  32. },
  33. {
  34. "path": "pages/discover/index",
  35. "style": {
  36. "navigationBarTitleText": ""
  37. }
  38. },
  39. {
  40. "path": "pages/me/index",
  41. "style": {
  42. "navigationBarTitleText": ""
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "uni-app",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8"
  51. },
  52. "uniIdRouter": {},
  53. "tabBar": {
  54. "color": "#999",
  55. "selectedColor": "#07c160",
  56. "backgroundColor": "#fff",
  57. "borderStyle": "black",
  58. "list": [
  59. {
  60. "pagePath": "pages/home/index",
  61. "iconPath": "static/tab_home.png",
  62. "selectedIconPath": "static/tab_home_active.png",
  63. "text": "微信"
  64. },
  65. {
  66. "pagePath": "pages/contacts/index",
  67. "iconPath": "static/tab_contacts.png",
  68. "selectedIconPath": "static/tab_contacts_active.png",
  69. "text": "通讯录"
  70. },
  71. {
  72. "pagePath": "pages/discover/index",
  73. "iconPath": "static/tab_discover.png",
  74. "selectedIconPath": "static/tab_discover_active.png",
  75. "text": "发现"
  76. },
  77. {
  78. "pagePath": "pages/me/index",
  79. "iconPath": "static/tab_me.png",
  80. "selectedIconPath": "static/tab_me_active.png",
  81. "text": "我"
  82. }
  83. ]
  84. }
  85. }