mall-app-t/peach/api/member/point.js

15 lines
244 B
JavaScript
Raw Permalink Normal View History

2024-06-03 01:09:01 +08:00
import request from "@/peach/request";
const PointApi = {
// 派发积分
sendPoint: (data) => {
return request({
url: "/particulars/point/send-member",
method: "POST",
data,
});
},
};
export default PointApi;