You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
331 B
JavaScript

4 months ago
import request from '@/utils/request'
// api地址
const api = {
doGive: 'clientApi/give/doGive',
giveLog: 'clientApi/give/giveLog'
}
// 转赠
export const doGive = (data) => {
return request.post(api.doGive, data)
}
// 转赠记录
export const giveLog = (param, option) => {
return request.post(api.giveLog, param)
}