Files
chazhi/src/api/pay.ts
2025-11-20 17:29:26 +08:00

16 lines
315 B
TypeScript

import { http } from '@/http/alova'
/**
* 给茶艺师打赏
*/
interface ITipTeaSpecialistParams {
id: number
tip_price: number
pay_type: number
}
export function payTipTeaSpecialist(data: ITipTeaSpecialistParams) {
return http.Post('/api/Teamaster/giveTeamasterTipAmount',
data
)
}