• 获取类型和类别接口

接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 kevin 2019-12-28

请求URL:

请求方式:

  • GET

请求头:

请求参数:

参数名 是否必须 类型 说明

返回示例:

正确时返回:


{
    "status": 200,
    "msg": "获取成功",
    "data": {
        "type": [
            {
                "type_id": 5,
                "type_name": "分享"
            },
            {......}
        ],
        "category": [
            {
                "cate_id": 8,
                "cate_name": "国庆"
            },
            {......}
        ],
        "list": [
        {
            "template_id": 10,
            "temp_type": 7,
            "temp_cate": 9,
            "temp_name": "春节",
            "is_charge": 1,
            "price": "0.01",
            "image": "http://tool.com/uploads/template/20191228151000/20191228151000.jpg",
            "preview": "http://tool.com/uploads/template/20191231121212/preview.png"
        },
        {......}
    ]
    }
}

错误时返回:

返回参数说明:

参数名 类型 说明
type array 类型列表
category array 类别列表
list array 模板列表

type返回参数说明:

参数名 类型 说明
type_id int 类型id
type_name string 类型名称

category返回参数说明:

参数名 类型 说明
cate_id int 类别id
cate_name string 类别名称

list返回参数说明:

参数名 类型 说明
template_id int 模板id
temp_type int 类型id
temp_cate int 类别id
temp_name string 模板名称
is_charge int 是否收费 0=免费 1=收费
price string 价格
image string 模板图片路径
preview string 模板图片预览图

备注:

文档更新时间: 2019-12-31 20:14   作者:admin