生成下单数据

POST {{base_url}}/cart/generateOrderData

Header

参数名 类型 必需 描述 示例
Authorization string 1 bearer {{token}}

Body

参数名 类型 必需 描述 示例
shop_id string 1 1
cart_ids string 1 177
cart_ids[1] string 1 178
cart_ids[2] array 1 179
dispatch_type string 0 取餐方式 1配送 2自取 1
coupon_id string 0 优惠券ID 11

返回示例

{
    "status": 200,
    "msg": "success",
    "data": {
        "carts": [
            {
                "id": 182,
                "uid": 14,
                "shop_id": 1,
                "goods_id": 2,
                "goods_name": "奥尔良鸡翅",
                "goods_img": "http://192.168.1.173:83/uploads/goods/2020-04-15/5e96e87b772cc.png",
                "goods_num": 1,
                "goods_price": "10.00",
                "goods_packing": "0.00",
                "goods_status": 1,
                "created_at": "2020-06-01 16:59:59",
                "updated_at": "2020-06-01 16:59:59"
            }
        ],
        "shop": {
            "shop_id": 1,
            "shop_name": "便利店(爱联店)",
            "shop_logo": "http://192.168.1.173:83/uploads/shop_logo/2020-04-15/5e96870366015.png",
            "send_goods_time": 0,
            "distribution_fee": 2,
            "shop_type_name": null
        },
        "dispatch_money": 2,
        "packing": 0,
        "original_goods_money": "10.00",
        "goods_money": "5.00",
        "full_reduction": {
            "full_id": 1,
            "shop_id": 1,
            "shop_type": 1,
            "use_money": 10,
            "reduce_money": 5,
            "status": 1,
            "created_at": "2020-04-17 17:39:23",
            "updated_at": null
        },
        "full_reduction_money": 5,
        "order_money": 12,
        "discounts_money": 5,
        "actual_money": 7,
        "user_address": {
            "address_id": 10,
            "uid": 14,
            "username": "nianwang",
            "phone": "18617004851",
            "region": "广东省 深圳市 龙岗区",
            "address": "龙岗街道志联佳大厦222",
            "is_default": 1,
            "create_at": "2020-06-02",
            "update_at": 1591079851
        }
    }
}
参数名 类型 描述
data.full_reduction object 满减信息
data.carts array 购物车商品信息
data.full_reduction_money number 满减优惠金额
data.discounts_money number 总优惠金额
文档更新时间: 2020-06-13 11:26   作者:nianwang