pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/sorting/index",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/login/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/individual/index",
  53. "style": {
  54. "navigationStyle": "custom"
  55. }
  56. }
  57. ],
  58. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F8F8F8",
  63. "navigationStyle": "custom"
  64. },
  65. "tabBar":{
  66. "color":"#7A7E83",
  67. "selectedColor":"#3cc51f",
  68. "borderStyle":"black",
  69. "backgroundColor":"#ffffff",
  70. "list":[{
  71. "pagePath":"pages/index/index",
  72. "text": "首页"
  73. }, {
  74. "pagePath":"pages/",
  75. "text": "消息"
  76. }, {
  77. "pagePath":"pages/mypage/index",
  78. "text": "我的"
  79. }]
  80. },
  81. "uniIdRouter": {}
  82. }