四零语境前端代码仓库
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.

35 lines
591 B

  1. import http from "@/api/http";
  2. export default{
  3. async getSignup() {
  4. // 首页底部内容添加报名
  5. return http({
  6. url: '/index/linkSignup',
  7. method: 'GET',
  8. })
  9. },
  10. // 首页底部内容链接
  11. async getLink() {
  12. return http({
  13. url: '/index/link',
  14. method: 'GET',
  15. })
  16. },
  17. // 首页底部内容链接详情
  18. async getLinkDetails() {
  19. return http({
  20. url: '/index/linkDetails',
  21. method: 'GET',
  22. })
  23. },
  24. // 查询轮播图
  25. async getBanner() {
  26. return http({
  27. url: '/index/banner',
  28. method: 'GET',
  29. })
  30. }
  31. }