调试接口
This commit is contained in:
@ -306,6 +306,7 @@ export interface ITeaRoomPackageOrderListParams {
|
||||
use_status: string
|
||||
operation_type: number
|
||||
search: string
|
||||
type: number // 1:本地套餐 2.抖音套餐
|
||||
}
|
||||
|
||||
export function getTeaRoomPackageOrderList(data: ITeaRoomPackageOrderListParams) {
|
||||
@ -352,15 +353,16 @@ export function calculateTeaRoomPrice(data: ICalculateTeaRoomPriceParams) {
|
||||
*/
|
||||
export interface ITeaRoomGroupCouponListParams {
|
||||
store_id: number
|
||||
room_id: number
|
||||
}
|
||||
|
||||
export function getTeaRoomGroupCouponList(data: ITeaRoomGroupCouponListParams) {
|
||||
return http.Post<{list: {}}>('/api/order/teaStoreGroupUseLists', data)
|
||||
return http.Post<any>('/api/order/teaStoreGroupUseLists', data)
|
||||
}
|
||||
|
||||
/**
|
||||
* 充值接口
|
||||
*/
|
||||
export function teaRoomRecharge(money: number) {
|
||||
return http.Post<{id: number}>('/api/recharge/recharge', {money})
|
||||
return http.Post<any>('/api/recharge/recharge', {money})
|
||||
}
|
||||
Reference in New Issue
Block a user