diff --git a/src/api/order.ts b/src/api/order.ts index 1ff9c5c..6a25229 100644 --- a/src/api/order.ts +++ b/src/api/order.ts @@ -119,3 +119,17 @@ export function toggleTeaSpecialistOrderPackageStatus(group_id: number, status: export function deleteTeaSpecialistOrderPackage(group_id: number) { 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('/storeapi/order/orderRenewList', data) +} \ No newline at end of file diff --git a/src/api/store.ts b/src/api/store.ts index 967f005..d3d8e8d 100644 --- a/src/api/store.ts +++ b/src/api/store.ts @@ -224,4 +224,4 @@ export function getStoreIncomeList(data: IGetStoreIncomeListParams) { */ export function scanVerifyCoupon(qr_sn: string, store_id: number) { return http.Post('/storeapi/group/cancelCode', { qr_sn, store_id }) -} \ No newline at end of file +}