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.
|
- const {request} = require("../request/index")
- /**
- * 申请志愿者服务
- * @param {*} data
- */
- export const applyVolunteer = function (data) {
- return request({
- url: '/westreamVolunteer/add',
- method: 'POST',
- data
- })
- }
|