pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. }
  14. }, {
  15. "path": "pages/public/login",
  16. "style": {
  17. "navigationBarTitleText": "登錄"
  18. }
  19. },
  20. {
  21. "path": "pages/public/wxLogin",
  22. "style": {
  23. "navigationBarTitleText": "微信登录",
  24. "app-plus": {
  25. "titleNView": {
  26. "type": "transparent"
  27. }
  28. }
  29. }
  30. },
  31. {
  32. "path": "pages/public/forget",
  33. "style": {
  34. "navigationBarTitleText": "忘记密码",
  35. "app-plus": {
  36. "titleNView": {
  37. "type": "transparent"
  38. }
  39. }
  40. }
  41. },
  42. {
  43. "path": "pages/user/user",
  44. "style": {
  45. "navigationBarTitleText": "我的"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "uni-app",
  52. "navigationBarBackgroundColor": "#FFFFFF",
  53. "backgroundColor": "#f8f8f8"
  54. },
  55. "tabBar": {
  56. "color": "#C0C4CC",
  57. "selectedColor": "#5DBC7C",
  58. "borderStyle": "black",
  59. "backgroundColor": "#ffffff",
  60. "list": [{
  61. "pagePath": "pages/index/index",
  62. "iconPath": "static/tabBar/tab-home.png",
  63. "selectedIconPath": "static/tabBar/tab-home-current.png",
  64. "text": "首页"
  65. },
  66. {
  67. "pagePath": "pages/user/user",
  68. "iconPath": "static/tabBar/tab-my.png",
  69. "selectedIconPath": "static/tabBar/tab-my-current.png",
  70. "text": "我的"
  71. }
  72. ]
  73. }
  74. }