点单管理-点单,查询购物车商品数据
POST
139.196.110.143/dev-api/system/cart/listShopStoreCart
接口描述
查询购物车中的商品数据,出参层级看接口返回数据格式
请求头
参数名
类型
描述
必填
Authorization
必填
请求参数
application/x-www-form-urlencoded参数名
类型
描述
必填
batchId
string
操作批次ID
必填
响应参数
application/json参数名
类型
描述
必填
code
int
状态码。200-成功;其他失败
必填
msg
string
成功或失败提示
必填
storeId
店铺ID
必填
skuId
商品ID(shop_product_sku表主键ID)
必填
batchId
批次号
必填
cartQuantity
商品数量
必填
cartId
购物车ID
必填
skuName
string
商品名称(需要返回该字段)
必填
subtotalAmount
float
金额小计(增加返回该字段)real_price*商品的数量
必填
price
float
商品单价(增加返回该字段),直接从shop_prodcut_sku表中获取的price字段
必填
vipPrice
flaot
商品会员价(增加返回该字段),直接从shop_prodcut_sku表中获取的vip_price字段
必填
realPrice
float
商品实际单价(增加返回该字段),前期直接从shop_prodcut_sku表中获取的price字段。后期有折扣的话,计算折扣后的价格。
必填
totalNum
int
购物车中所有商品数量
必填
totalAmount
float
购物车中所有商品的总金额,subtotalAmount累加起来
必填
packFee
float
打包费用,前期传0
必填
totalPaymentAmount
float
支付的总金额。前期等于totalAmount
必填