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/homework/homework",
    11. "style": {
    12. "navigationBarTitleText": "uni-app"
    13. }
    14. },
    15. {
    16. "path": "pages/personal/personal",
    17. "style": {
    18. "navigationBarTitleText": "uni-app"
    19. }
    20. }
    21. ],
    22. "globalStyle": {
    23. "navigationBarTextStyle": "black",
    24. "navigationBarTitleText": "uni-app",
    25. "navigationBarBackgroundColor": "#F8F8F8",
    26. "backgroundColor": "#F8F8F8"
    27. },
    28. "tabBar": {
    29. "color": "#C3B8B4",
    30. "selectedColor": "#F76605",
    31. "borderStyle": "white",
    32. "backgroundColor": "#fff",
    33. "list": [
    34. {
    35. "pagePath": "pages/index/index",
    36. "text": "学员",
    37. "iconPath": "static/indexNormal.png",
    38. "selectedIconPath": "static/indexActive.png"
    39. },
    40. {
    41. "pagePath": "pages/homework/homework",
    42. "text": "作业",
    43. "iconPath": "static/homeworkNormal.png",
    44. "selectedIconPath": "static/homeworkActive.png"
    45. },
    46. {
    47. "pagePath": "pages/personal/personal",
    48. "text": "我的",
    49. "iconPath": "static/personalNormal.png",
    50. "selectedIconPath": "static/personalActive.png"
    51. }
    52. ]
    53. }
    54. }