裂变星小程序-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.

28 lines
399 B

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