16 lines
315 B
TypeScript
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
|
|
)
|
|
} |