添加接口

This commit is contained in:
wangxiaowei
2025-12-26 22:20:10 +08:00
parent 027ca5f82c
commit c341d07b28
2 changed files with 15 additions and 1 deletions

View File

@ -119,3 +119,17 @@ export function toggleTeaSpecialistOrderPackageStatus(group_id: number, status:
export function deleteTeaSpecialistOrderPackage(group_id: number) { export function deleteTeaSpecialistOrderPackage(group_id: number) {
return http.Post('/storeapi/Group/delGroup', { group_id }) return http.Post('/storeapi/Group/delGroup', { group_id })
} }
/**
* 续订列表页
*/
export interface IGetRenewListParams {
page: number
size: number
store_id: number
}
export function getRenewList(data: IGetRenewListParams) {
return http.Post<any>('/storeapi/order/orderRenewList', data)
}

View File

@ -224,4 +224,4 @@ export function getStoreIncomeList(data: IGetStoreIncomeListParams) {
*/ */
export function scanVerifyCoupon(qr_sn: string, store_id: number) { export function scanVerifyCoupon(qr_sn: string, store_id: number) {
return http.Post<any>('/storeapi/group/cancelCode', { qr_sn, store_id }) return http.Post<any>('/storeapi/group/cancelCode', { qr_sn, store_id })
} }