订单详情完善

This commit is contained in:
wwz
2025-03-11 16:42:37 +08:00
parent 5342133cbd
commit cab9f836af
16 changed files with 506 additions and 126 deletions

View File

@@ -11,4 +11,31 @@ export const APIgeocodelocation = (data) => {
method: 'get',
data: data
})
}
//001-会员积分账户信息
export const APImemberPointsmyPoints = (data) => {
return request({
url: urlAccount + '/user/points/memberPoints/myPoints',
method: 'get',
data: data
})
}
//002-获取订单可用积分及抵扣金额(支付页面使用)
export const APImemberPointscalcUsablePoints = (data) => {
return request({
url: urlAccount + '/user/points/memberPoints/calcUsablePoints',
method: 'get',
data: data
})
}
//003-根据积分计算可抵扣金额
export const APImemberPointscalcDeductionAmount = (data) => {
return request({
url: urlAccount + '/user/points/memberPoints/calcDeductionAmount',
method: 'get',
data: data
})
}