裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
357 B

  1. const api = {
  2. /**
  3. * 获取公告信息
  4. */
  5. getNotice: {
  6. url: '/all_login/getNotice',
  7. method: 'GET',
  8. },
  9. /**
  10. * 获取动态列表
  11. */
  12. getNews: {
  13. url: '/all_login/getNews',
  14. method: 'GET',
  15. },
  16. /**
  17. * 获取新闻动态详情的接口
  18. */
  19. getNewsById: {
  20. url: '/all_login/getNewsById',
  21. method: 'GET',
  22. },
  23. }
  24. export default api