国外MOSE官网
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.

37 lines
712 B

  1. import request from "@/api/request";
  2. export default {
  3. // 首页- 申请成为志愿者
  4. async applyVolunteer(data) {
  5. return request({
  6. url: '/index/applyVolunteer',
  7. method: 'POST',
  8. data
  9. })
  10. },
  11. // 首页- 获取banner图列表
  12. async queryBannerList() {
  13. return request({
  14. url: '/index/queryBannerList',
  15. method: 'GET'
  16. })
  17. },
  18. // 首页- 获取公告详情
  19. async queryNoticeById(data) {
  20. return request({
  21. url: '/index/queryNoticeById',
  22. method: 'GET',
  23. data
  24. })
  25. },
  26. // 首页- 获取公告列表
  27. async queryNoticeList(data) {
  28. return request({
  29. url: '/index/queryNoticeList',
  30. method: 'GET',
  31. data
  32. })
  33. },
  34. }