pages.json 1.9 KB

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