pages.json 1.6 KB

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