This commit is contained in:
2026-02-06 14:00:01 +08:00
parent 3e99715eac
commit 045fd08139
8 changed files with 1313 additions and 565 deletions

View File

@@ -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,