image.png

    image.png
    image.png
    image.png

    image.png
    pages.json

    1. {
    2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
    3. {
    4. "path" : "pages/login/login",
    5. "style" : {}
    6. }
    7. ,{
    8. "path" : "pages/index/index",
    9. "style" : {
    10. //标题栏文字
    11. "navigationBarTitleText":"欢迎使用Next学院"
    12. }
    13. }
    14. ,{
    15. "path" : "pages/my-curriculum/my-curriculum",
    16. "style" : {
    17. //标题栏文字
    18. "navigationBarTitleText":"课程表"
    19. }
    20. }
    21. ,{
    22. "path" : "pages/user/user",
    23. "style" : {
    24. "navigationBarTitleText":"用户"
    25. }
    26. }
    27. ],
    28. "globalStyle": {
    29. "navigationBarTextStyle": "black",
    30. "navigationBarTitleText": "My Next学院小程序",
    31. "navigationBarBackgroundColor": "#F8F8F8",
    32. "backgroundColor": "#F8F8F8"
    33. },
    34. "tabBar":{
    35. "color":"#515151",
    36. "selectedColor":"#33C9FF",
    37. "list":[{
    38. "pagePath":"pages/index/index",
    39. "iconPath":"static/img/home-1.png",
    40. "selectedIconPath":"static/img/home-2.png",
    41. "text":"首页"
    42. },{
    43. "pagePath":"pages/my-curriculum/my-curriculum",
    44. "iconPath":"static/img/calendar-1.png",
    45. "selectedIconPath":"static/img/calendar-2.png",
    46. "text":"课程表"
    47. },{
    48. "pagePath":"pages/user/user",
    49. "iconPath":"static/img/people-1.png",
    50. "selectedIconPath":"static/img/people-1.png",
    51. "text":"用户"
    52. }]
    53. }
    54. }