wxapp/api/give.js

18 lines
331 B
JavaScript
Raw Permalink Normal View History

2024-08-03 11:57:17 +00:00
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)
}