存档
This commit is contained in:
20
utils/api.js
20
utils/api.js
@@ -254,6 +254,26 @@ const api = {
|
||||
})
|
||||
},
|
||||
|
||||
getPointInfo() {
|
||||
return request({
|
||||
url: config.api.getPointInfo,
|
||||
method: 'POST',
|
||||
noAuthModal: true
|
||||
})
|
||||
},
|
||||
|
||||
getPointRecord(page = 1, pageSize = 10) {
|
||||
return request({
|
||||
url: config.api.getPointRecord,
|
||||
method: 'POST',
|
||||
data: {
|
||||
page,
|
||||
page_size: pageSize
|
||||
},
|
||||
noAuthModal: true
|
||||
})
|
||||
},
|
||||
|
||||
getAllCategory() {
|
||||
return request({
|
||||
url: config.api.getAllCategory,
|
||||
|
||||
Reference in New Issue
Block a user