简要描述:

  • 接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 kevin 2022-05-14

请求URL:

请求方式:

  • GET

请求头:

参数名 是否必须 类型 说明
token string 授权凭证

请求参数:

参数名 是否必须 类型 说明
module string 显示模块,请查看模块参数
cart_ids string 购物车id,以英文,隔开

返回示例:

正确时返回:

{
    "status": 200,
    "msg": "成功",
    "data": {
        "list": [
            {
                "shop_id": 2,
                "shop_uid": 16,
                "shop_logo": "http://wzb.com/uploads/service/2020/07/11/5f09722c95323.png",
                "shop_name": "吉祥店",
                "shop_all_price": 200,
                "goods_list": [
                    {
                        "cart_id": 5,
                        "goods_id": 12,
                        "uid": 8,
                        "num": 2,
                        "title": "宿舍木门",
                        "cover": "http://wzb.com/uploads/service/2020/07/11/5f09722c95323.png",
                        "price": "100.00"
                    },
                ]
            },
            {
                "shop_id": 1,
                "shop_uid": 9,
                "shop_logo": "http://wzb.com/uploads/service/2020/07/11/5f09722c95323.png",
                "shop_name": "爱联店",
                "shop_all_price": 1100,
                "goods_list": [
                    {
                        "cart_id": 9,
                        "goods_id": 15,
                        "uid": 8,
                        "num": 1,
                        "title": "宿舍木门",
                        "cover": "http://wzb.com/uploads/service/2020/07/11/5f09722c95323.png",
                        "price": "1000.00"
                    },
                ]
            }
        ],
        "price": 1300,
        "wzb_currency": 1300,
        "discount_price": 1000,
        "addressList": [
            {
                "address_id": 1,
                "username": "kevin",
                "phone": "13113690000",
                "region": "广东省-深圳市-龙岗区",
                "address": "银濠酒店"
            },
        ],
        "address": {
            "address_id": 1,
            "username": "kevin",
            "phone": "13113690000",
            "region": "广东省-深圳市-龙岗区",
            "address": "银濠酒店"
        },
        "userCardWallet": {
            "id": 3,
            "uid": 8,
            "module": "unionshopmulti",
            "card_type": 1,
            "balance": 100,
            "exp_time": "2023-01-13",
            "number": 38547399,
            "can_use": true,
            "card_type_msg": "季卡"
        }
    }
}

错误时返回:

{
    "status": 0,
    "msg": "参数错误"
}

addressList返回参数说明:

参数名 类型 说明
address_id int 地址id
username string 收货人
phone string 手机号
region string 地址区域
address string 详细地址

address返回参数说明:

参数名 类型 说明
address_id int 地址id
username string 收货人
phone string 手机号
region string 地址区域
address string 详细地址

list返回参数说明:

参数名 类型 说明
shop_id int 店铺id
shop_uid string 店铺uid
shop_logo string 店铺logo
shop_name string 店铺名称
shop_all_price string 总价格
goods_list.cart_id string 购物车id
goods_list.goods_id string 商品id
goods_list.uid string 店铺uid
goods_list.num string 数量
goods_list.title string 商品标题
goods_list.cover string 商品封面
goods_list.price string 商品单价

userCardWallet返回参数说明:

参数名 类型 说明
id int id
uid int uid
module string 模块
card_type string 卡类型【1=季卡,2=年卡】
card_type_msg string 卡类型提示
balance string 余额
exp_time string 过期时间
number string 编号
can_use string 是否可以使用【true=可以使用,false=不能使用】

备注:

作者:admin  创建时间:2022-05-14 17:28
 更新时间:2025-04-01 15:40