pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/sorting/index",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path": "pages/baggagecheck/index",
  23. "style": {
  24. "navigationStyle": "custom"
  25. }
  26. },
  27. {
  28. "path": "pages/mypage/index",
  29. "style": {
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path": "pages/myrecords/index",
  35. "style": {
  36. "navigationStyle": "custom"
  37. }
  38. },
  39. {
  40. "path": "pages/search/index",
  41. "style": {
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/loadingdetails/index",
  47. "style": {
  48. "navigationStyle": "custom"
  49. }
  50. },
  51. {
  52. "path": "pages/help/index",
  53. "style": {
  54. "navigationStyle": "custom"
  55. }
  56. },
  57. {
  58. "path": "pages/individual/index",
  59. "style": {
  60. "navigationStyle": "custom"
  61. }
  62. }
  63. ],
  64. "globalStyle": {
  65. "navigationBarTextStyle": "black",
  66. "navigationBarTitleText": "",
  67. "navigationBarBackgroundColor": "#F8F8F8",
  68. "backgroundColor": "#F8F8F8",
  69. "navigationStyle": "custom"
  70. },
  71. "tabBar":{
  72. "color":"#7A7E83",
  73. "selectedColor":"#3cc51f",
  74. "borderStyle":"black",
  75. "backgroundColor":"#ffffff",
  76. "list":[{
  77. "pagePath":"pages/index/index",
  78. "text": "首页"
  79. }, {
  80. "pagePath":"pages/",
  81. "text": "消息"
  82. }, {
  83. "pagePath":"pages/mypage/index",
  84. "text": "我的"
  85. }]
  86. },
  87. "uniIdRouter": {}
  88. }