pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle":"custom"
  7. }
  8. },
  9. {
  10. "path": "pages/index/scan",
  11. "style": {
  12. "navigationStyle":"custom"
  13. }
  14. },
  15. {
  16. "path": "pages/index/wufa",
  17. "style": {
  18. "navigationStyle":"custom"
  19. }
  20. },
  21. {
  22. "path": "pages/index/record",
  23. "style": {
  24. "navigationStyle":"custom"
  25. }
  26. },
  27. {
  28. "path": "pages/login/login",
  29. "style": {
  30. "navigationStyle":"custom"
  31. }
  32. },
  33. {
  34. "path": "pages/index/success",
  35. "style": {
  36. "navigationStyle":"custom"
  37. }
  38. },
  39. {
  40. "path": "pages/code/code",
  41. "style": {
  42. "navigationStyle":"custom"
  43. }
  44. },
  45. {
  46. "path": "pages/index/guidedetail",
  47. "style": {
  48. "navigationStyle":"custom"
  49. }
  50. },
  51. {
  52. "path": "pages/mine/mine",
  53. "style": {
  54. "navigationStyle":"custom"
  55. }
  56. },
  57. {
  58. "path": "pages/login/updatpaw",
  59. "style": {
  60. "navigationStyle":"custom"
  61. }
  62. }
  63. ],
  64. "tabBar": {
  65. "color": "#AAAAAA",
  66. "selectedColor": "#343434",
  67. "borderStyle": "black",
  68. "backgroundColor": "#ffffff",
  69. "list": [{
  70. "pagePath": "pages/index/index"
  71. },
  72. {
  73. "pagePath": "pages/mine/mine"
  74. }
  75. ]
  76. },
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uni-app",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. },
  83. "uniIdRouter": {}
  84. }