pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "银元价格查询",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/login/login",
  12. "style": {
  13. "navigationBarTitleText": "",
  14. "navigationBarBackgroundColor": "#FFFFFF"
  15. }
  16. },
  17. {
  18. "path": "pages/login/reg",
  19. "style": {
  20. "navigationBarTitleText": "",
  21. "navigationBarBackgroundColor": "#FFFFFF"
  22. }
  23. },
  24. {
  25. "path": "pages/login/forget",
  26. "style": {
  27. "navigationBarTitleText": "忘记密码",
  28. "navigationBarBackgroundColor": "#FFFFFF"
  29. }
  30. },
  31. {
  32. "path": "pages/login/agreement",
  33. "style": {
  34. "navigationBarTitleText": "用户协议"
  35. }
  36. },
  37. {
  38. "path": "pages/mine/index",
  39. "style": {
  40. "navigationBarTitleText": "我的",
  41. "navigationStyle": "custom"
  42. }
  43. }, {
  44. "path": "pages/index/price",
  45. "style": {
  46. "navigationBarTitleText": "银元价格",
  47. "enablePullDownRefresh": false
  48. }
  49. }, {
  50. "path": "pages/statistical/statistical",
  51. "style": {
  52. "navigationBarTitleText": "交易量统计",
  53. "enablePullDownRefresh": false
  54. }
  55. }
  56. ],
  57. "tabBar": {
  58. "custom": false,
  59. "color": "#656765",
  60. "selectedColor": "#000102",
  61. "borderStyle": "white",
  62. "backgroundColor": "#ffffff",
  63. "list": [{
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/11.png",
  66. "selectedIconPath": "static/1.png",
  67. "text": "银元"
  68. },
  69. {
  70. "pagePath": "pages/statistical/statistical",
  71. "iconPath": "static/4.png",
  72. "selectedIconPath": "static/44.png",
  73. "text": "统计"
  74. }, {
  75. "pagePath": "pages/mine/index",
  76. "iconPath": "static/4.png",
  77. "selectedIconPath": "static/44.png",
  78. "text": "我的"
  79. }
  80. ]
  81. },
  82. "globalStyle": {
  83. "navigationBarTextStyle": "black",
  84. "navigationBarTitleText": "银元价格查询",
  85. "navigationBarBackgroundColor": "#F8F8F8",
  86. "backgroundColor": "#F8F8F8"
  87. },
  88. "uniIdRouter": {}
  89. }