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

12 lines
252B

  1. const {request} = require("../request/index")
  2. /**
  3. * 申请志愿者服务
  4. * @param {*} data
  5. */
  6. export const applyVolunteer = function (data) {
  7. return request({
  8. url: '/westreamVolunteer/add',
  9. method: 'POST',
  10. data
  11. })
  12. }