Authorization: Bearer ********************
{
"addressId": 0,
"couponId": 0,
"preOrderNo": "string",
"shippingType": 0,
"useIntegral": true
}
curl --location --request POST '/api/front/order/computed/price' \
--header 'Authori-zation: {{token}}' \
--header 'source: {{source}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"addressId": 0,
"couponId": 0,
"preOrderNo": "string",
"shippingType": 0,
"useIntegral": true
}'
{
"code": 200,
"message": "操作成功",
"data": {
"couponFee": "0",
"deductionPrice": "0",
"freightFee": "0",
"payFee": "10.00",
"proTotalFee": "20.00",
"surplusIntegral": 576,
"useIntegral": false,
"usedIntegral": 0,
"vipPreferentialAmount": "10"
}
}