代客下单问题修复,积分上传问题修复

This commit is contained in:
2025-12-12 17:56:26 +08:00
parent 9a0164eff6
commit 6f1864771d
29 changed files with 12071 additions and 7571 deletions

View File

@@ -10,4 +10,27 @@ export const pointsShopList = (data) => {
})
}
export const pointsConfig = (data) => {
return request({
url: prveUrl + '/user/point/pointsConfig',
method: 'get',
data: data
})
}
export const userPoints = (data) => {
return request({
url: prveUrl + '/user/point/userPoints',
method: 'get',
data: data
})
}
export const userRecord = (data) => {
return request({
url: prveUrl + '/user/point/userRecord',
method: 'get',
data: data
})
}