完善茶艺师套餐功能

This commit is contained in:
wangxiaowei
2026-03-31 21:59:42 +08:00
parent 61d0ca2bd1
commit 401b1f0d2f
28 changed files with 593 additions and 176 deletions

View File

@ -110,9 +110,16 @@ export function applyTeaSpecialistRefund(id: number, order_type: number = 10) {
* 获取专属圈子标签
*/
export function getExclusiveCirclesLabel() {
return http.Post<any>('/api/Teamaster/teamasterLabel', null,
return http.Post<any>('/api/Teamaster/teamasterLabel', null,
{
meta: { ignoreAuth: true }
}
)
}
/**
* 团体预约茶艺师
*/
export function reserveGroupTeaSpecialist(data) {
return http.Post<any>('/api/user/reservation', data)
}