pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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/flightdetails/index",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path": "pages/sorting/index",
  23. "style": {
  24. "navigationStyle": "custom"
  25. }
  26. },
  27. {
  28. "path": "pages/baggagecheck/index",
  29. "style": {
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path": "pages/mypage/index",
  35. "style": {
  36. "navigationStyle": "custom"
  37. }
  38. },
  39. {
  40. "path": "pages/myrecords/index",
  41. "style": {
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/search/index",
  47. "style": {
  48. "navigationStyle": "custom"
  49. }
  50. },
  51. {
  52. "path": "pages/loadingdetails/index",
  53. "style": {
  54. "navigationStyle": "custom"
  55. }
  56. },
  57. {
  58. "path": "pages/help/index",
  59. "style": {
  60. "navigationStyle": "custom"
  61. }
  62. },
  63. {
  64. "path": "pages/individual/index",
  65. "style": {
  66. "navigationStyle": "custom"
  67. }
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "",
  73. "navigationBarBackgroundColor": "#F8F8F8",
  74. "backgroundColor": "#F8F8F8",
  75. "navigationStyle": "custom"
  76. },
  77. "tabBar":{
  78. "color":"#7A7E83",
  79. "selectedColor":"#3cc51f",
  80. "borderStyle":"black",
  81. "backgroundColor":"#ffffff",
  82. "list":[{
  83. "pagePath":"pages/index/index",
  84. "text": "首页"
  85. }, {
  86. "pagePath":"pages/",
  87. "text": "消息"
  88. }, {
  89. "pagePath":"pages/mypage/index",
  90. "text": "我的"
  91. }]
  92. },
  93. "uniIdRouter": {}
  94. }