pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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/individual/index",
  35. "style": {
  36. "navigationStyle": "custom"
  37. }
  38. }
  39. ],
  40. "globalStyle": {
  41. "navigationBarTextStyle": "black",
  42. "navigationBarTitleText": "",
  43. "navigationBarBackgroundColor": "#F8F8F8",
  44. "backgroundColor": "#F8F8F8",
  45. "navigationStyle": "custom"
  46. },
  47. "tabBar":{
  48. "color":"#7A7E83",
  49. "selectedColor":"#3cc51f",
  50. "borderStyle":"black",
  51. "backgroundColor":"#ffffff",
  52. "list":[{
  53. "pagePath":"pages/index/index",
  54. "text": "首页"
  55. }, {
  56. "pagePath":"pages/",
  57. "text": "消息"
  58. }, {
  59. "pagePath":"pages/mypage/index",
  60. "text": "我的"
  61. }]
  62. },
  63. "uniIdRouter": {}
  64. }