pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "任务",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/risk/risk",
  12. "style": {
  13. "navigationBarTitleText": "风险",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path" : "pages/mine/mine",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "我的",
  22. "navigationStyle": "custom"
  23. }
  24. },
  25. {
  26. "path": "pages/login/login",
  27. "style": {
  28. "navigationBarTitleText": "登录"
  29. }
  30. }
  31. ],
  32. "tabBar": {
  33. "color": "#999999",
  34. "selectedColor": "#3384ff",
  35. "borderStyle": "white",
  36. "backgroundColor": "#ffffff",
  37. "height": "50px",
  38. "fontSize": "10px",
  39. "iconWidth": "24px",
  40. "spacing": "3px",
  41. "list": [{
  42. "pagePath": "pages/index/index",
  43. "iconPath": "static/tabBar/Home.png",
  44. "selectedIconPath": "static/tabBar/HomeEd.png",
  45. "text": "任务"
  46. }, {
  47. "pagePath": "pages/risk/risk",
  48. "iconPath": "static/tabBar/risk.png",
  49. "selectedIconPath": "static/tabBar/riskEd.png",
  50. "text": "风险"
  51. }, {
  52. "pagePath": "pages/mine/mine",
  53. "iconPath": "static/tabBar/mine.png",
  54. "selectedIconPath": "static/tabBar/mineEd.png",
  55. "text": "我的"
  56. }]
  57. },
  58. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "uni-app",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F8F8F8",
  63. "app-plus": {
  64. "background": "#efeff4"
  65. }
  66. }
  67. }