pages.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path" : "pages/my/my",
  11. "style" :
  12. {
  13. "navigationStyle" : "custom"
  14. }
  15. },
  16. {
  17. "path" : "pages/articleList/articleList",
  18. "style" :
  19. {
  20. "navigationBarTitleText" : "列表"
  21. }
  22. },
  23. {
  24. "path" : "pages/dogApplication/dogApplication",
  25. "style" :
  26. {
  27. "navigationBarTitleText" : "犬证办理"
  28. }
  29. },
  30. {
  31. "path" : "pages/articleDetail/articleDetail",
  32. "style" :
  33. {
  34. "navigationBarTitleText" : "详情"
  35. }
  36. }
  37. ],
  38. "tabBar": {
  39. "color": "#000",
  40. "selectedColor": "#000",
  41. "borderStyle": "black",
  42. "height": "100rpx",
  43. "backgroundColor": "#ffffff",
  44. "list": [{
  45. "pagePath": "pages/index/index",
  46. "iconPath": "static/tabImg/index.png",
  47. "selectedIconPath": "/static/tabImg/index-select.png",
  48. "text": "工作台"
  49. }, {
  50. "pagePath": "pages/my/my",
  51. "iconPath": "static/tabImg/my.png",
  52. "selectedIconPath": "/static/tabImg/my-select.png",
  53. "text": "我的"
  54. }]
  55. },
  56. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "uni-app",
  59. "navigationBarBackgroundColor": "#F8F8F8",
  60. "backgroundColor": "#F8F8F8"
  61. },
  62. "uniIdRouter": {}
  63. }