pages.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "银元价格查询"
  7. }
  8. },
  9. {
  10. "path": "pages/login/login",
  11. "style": {
  12. "navigationBarTitleText": "",
  13. "navigationBarBackgroundColor": "#FFFFFF"
  14. }
  15. },
  16. {
  17. "path": "pages/login/reg",
  18. "style": {
  19. "navigationBarTitleText": "",
  20. "navigationBarBackgroundColor": "#FFFFFF"
  21. }
  22. },
  23. {
  24. "path": "pages/login/forget",
  25. "style": {
  26. "navigationBarTitleText": "忘记密码",
  27. "navigationBarBackgroundColor": "#FFFFFF"
  28. }
  29. },
  30. {
  31. "path": "pages/login/agreement",
  32. "style": {
  33. "navigationBarTitleText": "用户协议"
  34. }
  35. },
  36. {
  37. "path": "pages/mine/index",
  38. "style": {
  39. "navigationBarTitleText": "我的",
  40. "navigationStyle": "custom"
  41. }
  42. }, {
  43. "path": "pages/index/price",
  44. "style": {
  45. "navigationBarTitleText": "银元价格",
  46. "enablePullDownRefresh": false
  47. }
  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/mine/index",
  71. "iconPath": "static/4.png",
  72. "selectedIconPath": "static/44.png",
  73. "text": "我的"
  74. }
  75. ]
  76. },
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "银元价格查询",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. },
  83. "uniIdRouter": {}
  84. }