pages.json 1.6 KB

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