调试接口
This commit is contained in:
@ -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')
|
||||
}
|
||||
Reference in New Issue
Block a user