pages.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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/user/scanCode",
  11. "style": {
  12. "navigationBarTitleText": "扫码"
  13. }
  14. },
  15. {
  16. "path": "pages/login/empower",
  17. "style": {
  18. "navigationBarTitleText": "授权登录"
  19. }
  20. },
  21. {
  22. "path": "pages/index/signOut",
  23. "style": {
  24. "navigationBarTitleText": "退出登录"
  25. }
  26. },
  27. {
  28. "path": "pages/index/map",
  29. "style": {
  30. "navigationBarTitleText": "导航"
  31. }
  32. },
  33. {
  34. "path": "pages/index/home",
  35. "style": {
  36. "navigationStyle": "custom"
  37. }
  38. },
  39. {
  40. "path": "pages/pay/pay",
  41. "style": {
  42. "navigationBarTitleText": "微信支付"
  43. }
  44. },
  45. {
  46. "path": "pages/login/login",
  47. "style": {
  48. "navigationBarTitleText": "登录"
  49. }
  50. },
  51. {
  52. "path": "pages/login/iphoneLogin",
  53. "style": {
  54. "navigationBarTitleText": "手机号登录"
  55. }
  56. },
  57. {
  58. "path": "pages/home/home",
  59. "style": {
  60. "navigationBarTitleText": "首页"
  61. }
  62. },
  63. {
  64. "path": "pages/user/user",
  65. "style": {
  66. "navigationBarTitleText": "我的"
  67. }
  68. }
  69. ],
  70. /* "tabBar": {
  71. "color": "#8a8a8a",
  72. "selectedColor": "#FF4F00",
  73. "borderStyle": "black",
  74. "backgroundColor": "#ffffff",
  75. "list": [{
  76. "pagePath": "pages/index/index",
  77. "iconPath": "static/img/index1.png",
  78. "selectedIconPath": "static/img/index2.png",
  79. "text": "首页"
  80. },
  81. {
  82. "pagePath": "pages/user/user",
  83. "iconPath": "static/img/me1.png",
  84. "selectedIconPath": "static/img/me2.png",
  85. "text": "我的"
  86. }
  87. ]
  88. }, */
  89. "globalStyle": {
  90. "navigationBarTextStyle": "black",
  91. "navigationBarTitleText": "",
  92. "navigationBarBackgroundColor": "#F8F8F8",
  93. "backgroundColor": "#F8F8F8"
  94. }
  95. }