拓恒河湖长制全民护河平台WEB端
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.

30 lines
691B

  1. const {request} = require("../request/index")
  2. export const api_westreamActivity = function (data) {
  3. return request({
  4. url: '/westreamActivity/index',
  5. method: 'GET',
  6. data
  7. })
  8. }
  9. export const activitySubmit = function (data) {
  10. return request({
  11. url: '/westreamActivityApply/submit',
  12. method: 'POST',
  13. data
  14. })
  15. }
  16. export const activityGetApply = function (data) {
  17. return request({
  18. url: '/westreamActivityApply/getApply',
  19. method: 'GET',
  20. data
  21. })
  22. }
  23. export const api_getApply = function (data) {
  24. return request({
  25. url: '/westreamActivityApply/getApply',
  26. method: 'GET',
  27. data
  28. })
  29. }