优化功能

This commit is contained in:
wangxiaowei
2026-01-12 17:39:48 +08:00
parent d1560ab450
commit f5e77e997b
21 changed files with 498 additions and 98 deletions

View File

@ -95,7 +95,7 @@ export interface IGetMyCouponsParams {
type_id: number
}
export function getMyCoupons(data: IGetMyCouponsParams) {
return http.Post('/api/UserCoupon/orderCoupinList', data)
return http.Post('/api/UserCoupon/UserCoupinList', data)
}
/**
@ -188,4 +188,11 @@ export function getMobileByMnp(code: string) {
*/
export function openLock(order_id: number, type: number) {
return http.Post('/api/Common/ce_ttlock', {order_id, type})
}
}
/**
* 门店余额记录
*/
export function getStoreBalanceLog() {
return http.Post<any>('/api/user/userStoreMoneyList', {})
}