- PC端
- 商品
- 订单
- 用户
- APP端
- 用户
- 商品
- 订单
计算订单价格
开发中
POST
/api/front/order/computed/price
最后修改时间:2023-06-09 08:09:43
责任人:未设置
请求参数
Body 参数application/json
addressId
integer
必需
couponId
integer
必需
preOrderNo
string
必需
shippingType
integer
必需
useIntegral
boolean
必需
示例
{
"addressId": 0,
"couponId": 0,
"preOrderNo": "",
"shippingType": 0,
"useIntegral": true
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
data
object
必需
couponFee
integer
必需
deductionPrice
integer
必需
freightFee
integer
必需
payFee
integer
必需
proTotalFee
integer
必需
surplusIntegral
integer
必需
useIntegral
boolean
必需
usedIntegral
integer
必需
message
string
必需
示例
{
"code": 0,
"data": {
"couponFee": 0,
"deductionPrice": 0,
"freightFee": 0,
"payFee": 0,
"proTotalFee": 0,
"surplusIntegral": 0,
"useIntegral": true,
"usedIntegral": 0
},
"message": ""
}
修改于 2023-06-09 08:09:43