pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "enablePullDownRefresh": true,
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/public/register",
  11. "style": {
  12. "navigationBarTitleText": "注册",
  13. "app-plus": {
  14. "titleNView": {
  15. "type": "transparent"
  16. }
  17. }
  18. }
  19. }, {
  20. "path": "pages/public/login",
  21. "style": {
  22. "navigationBarTitleText": "登录",
  23. "app-plus": {
  24. "titleNView": {
  25. "type": "transparent"
  26. }
  27. }
  28. }
  29. },
  30. {
  31. "path": "pages/public/wxLogin",
  32. "style": {
  33. "navigationBarTitleText": "微信登录",
  34. "app-plus": {
  35. "titleNView": {
  36. "type": "transparent"
  37. }
  38. }
  39. }
  40. },
  41. {
  42. "path": "pages/public/forget",
  43. "style": {
  44. "navigationBarTitleText": "忘记密码",
  45. "app-plus": {
  46. "titleNView": {
  47. "type": "transparent"
  48. }
  49. }
  50. }
  51. },
  52. {
  53. "path": "pages/user/user",
  54. "style": {
  55. "navigationBarTitleText": "我的"
  56. }
  57. }
  58. ],
  59. "globalStyle": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarTitleText": "uni-app",
  62. "navigationBarBackgroundColor": "#FFFFFF",
  63. "backgroundColor": "#f8f8f8"
  64. },
  65. "tabBar": {
  66. "color": "#C0C4CC",
  67. "selectedColor": "#5DBC7C",
  68. "borderStyle": "black",
  69. "backgroundColor": "#ffffff",
  70. "list": [{
  71. "pagePath": "pages/index/index",
  72. "iconPath": "static/tabBar/tab-home.png",
  73. "selectedIconPath": "static/tabBar/tab-home-current.png",
  74. "text": "首页"
  75. },
  76. {
  77. "pagePath": "pages/user/user",
  78. "iconPath": "static/tabBar/tab-my.png",
  79. "selectedIconPath": "static/tabBar/tab-my-current.png",
  80. "text": "我的"
  81. }
  82. ]
  83. }
  84. }