pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/user/user",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/user/historySpend",
  17. "style" :
  18. {
  19. "navigationBarTitleText": "历史消费",
  20. "enablePullDownRefresh": true
  21. }
  22. }
  23. ],
  24. "tabBar": {
  25. "color": "#8a8a8a",
  26. "selectedColor": "#FF4F00",
  27. "borderStyle": "black",
  28. "backgroundColor": "#ffffff",
  29. "list": [{
  30. "pagePath": "pages/index/index",
  31. // "iconPath": "static/img/table_icon_homepage1.png",
  32. // "selectedIconPath": "static/img/table_icon_homepage2.png",
  33. "text": "首页"
  34. },
  35. {
  36. "pagePath": "pages/user/user",
  37. // "iconPath": "static/img/tabme1.png",
  38. // "selectedIconPath": "static/img/tabme2.png",
  39. "text": "我的"
  40. }
  41. ]
  42. },
  43. "globalStyle": {
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "uni-app",
  46. "navigationBarBackgroundColor": "#F8F8F8",
  47. "backgroundColor": "#F8F8F8"
  48. },
  49. "uniIdRouter": {}
  50. }