pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/deal/deal",
  5. "style" :
  6. {
  7. // "navigationBarTitleText": "账号交易",
  8. "enablePullDownRefresh": true,
  9. "navigationStyle": "custom"
  10. }
  11. },
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. // "navigationBarTitleText": "简图速览",
  16. "navigationStyle": "custom"
  17. }
  18. }
  19. ,{
  20. "path" : "pages/skip/skip",
  21. "style" :
  22. {
  23. // "navigationBarTitleText": "快捷跳转",
  24. "enablePullDownRefresh": false,
  25. "navigationStyle": "custom"
  26. }
  27. }
  28. ,{
  29. "path" : "pages/notice/notice",
  30. "style" :
  31. {
  32. // "navigationBarTitleText": "公告",
  33. "enablePullDownRefresh": false,
  34. "navigationStyle": "custom"
  35. }
  36. }
  37. ,{
  38. "path" : "pages/deal/productInfo",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false,
  43. "navigationStyle": "custom"
  44. }
  45. }
  46. ,{
  47. "path" : "pages/test/test",
  48. "style" :
  49. {
  50. "navigationBarTitleText": "ceshi",
  51. "enablePullDownRefresh": false
  52. }
  53. }
  54. ],
  55. "tabBar": {
  56. "selectedColor": "#A5CF49",
  57. "color": "#999999",
  58. "borderStyle": "white",
  59. "backgroundColor": "#fff",
  60. "fontSize": "16px",
  61. "list": [
  62. {
  63. "pagePath": "pages/deal/deal",
  64. "text": "账号交易"
  65. // "selectedIconPath": "/static/icon/profileS@2x.png",
  66. // "iconPath": "/static/icon/profile@2x.png"
  67. },
  68. {
  69. "pagePath": "pages/index/index",
  70. "text": "简图速览"
  71. // "selectedIconPath": "/static/icon/indexS@2x.png",
  72. // "iconPath": "/static/icon/index@2x.png"
  73. },
  74. {
  75. "pagePath": "pages/skip/skip",
  76. "text": "快捷跳转"
  77. // "selectedIconPath": "/static/icon/profileS@2x.png",
  78. // "iconPath": "/static/icon/profile@2x.png"
  79. },
  80. {
  81. "pagePath": "pages/notice/notice",
  82. "text": "公告"
  83. // "selectedIconPath": "/static/icon/profileS@2x.png",
  84. // "iconPath": "/static/icon/profile@2x.png"
  85. }
  86. ]
  87. },
  88. "globalStyle": {
  89. "navigationBarTextStyle": "black",
  90. "navigationBarTitleText": "",
  91. "navigationBarBackgroundColor": "#FFFFFF",
  92. "backgroundColor": "#FFFFFF"
  93. },
  94. "uniIdRouter": {}
  95. }