调试接口

This commit is contained in:
wangxiaowei
2025-12-20 22:44:12 +08:00
parent fc3072980c
commit a2f1023de8
32 changed files with 982 additions and 483 deletions

View File

@ -130,7 +130,7 @@ export interface IGetUserMoneyLogParams {
}
export function getUserMoneyLog(data: IGetUserMoneyLogParams) {
return http.Post<IOrderListResult>('/api/user/moneyLogList', data)
return http.Post<any>('/api/user/moneyLogList', data)
}
/**
@ -144,3 +144,23 @@ export interface IUpdateUserInfoParams {
export function updateUserInfo(data: IUpdateUserInfoParams) {
return http.Post('/api/user/setInfo', data)
}
/**
* 抖音验券
*/
export interface ICheckDouyinCouponParams {
store_id: number,
code: string,
type: number // 1是手动输入 2是扫码
}
export function checkDouyinCoupon(data: ICheckDouyinCouponParams) {
return http.Post('/api/DouyinAfterVerifi/setDouy', data)
}
/**
* 会员记录
*/
export function getUserMember() {
return http.Post<any>('/api/user/UserMember')
}