增加信息
This commit is contained in:
@@ -28,4 +28,38 @@ export async function variationPage(body) {
|
||||
},
|
||||
data: body || {},
|
||||
});
|
||||
}
|
||||
}
|
||||
export async function withdrawExtract(body) {
|
||||
return request('/api/userspoints/points/extract/export', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: body || {},
|
||||
responseType: 'blob'
|
||||
});
|
||||
}
|
||||
export async function pointsExtract(body) {
|
||||
return request('/api/userspoints/points/export', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: body || {},
|
||||
responseType: 'blob'
|
||||
});
|
||||
}
|
||||
|
||||
export async function recordExtract(body) {
|
||||
return request('/api/userspoints/points/record/export', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
},
|
||||
data: body || {},
|
||||
responseType: 'blob'
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user