多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 商品分类 >[info]接口认证:**不需要认证** ##### 响应说明 | 字段名 | 字段类型 | 字段说明 | | --- | --- | --- | | id | int | 轮播图id | | name | string | 轮播图名字 | | type | int | 轮播图类型,关系到交互,`1:店铺链接(暂时无用)`,`2:外部链接`,`3:文章` | | store_id | int | 店铺id | | link | string | 外链链接 | | content | string | 文章内容 | | image | string | 轮播图图片地址 | ##### slug说明 > 1. `home`: 首页的轮播图 > 2. `quality_goods`: 品质生活顶部轮播图 ##### api说明 ~~~[api] get:/slidImages/list?slug=home *string:slug=home#轮播图的位置,home:首页,其他待添加 <<< success { "code": 200, "msg": "成功", "data": [ { "id": 4, "name": "首页1", "type": 1, "store_id": 1, "link": "", "content": "", "image": "http://noobcoder.oss-cn-hangzhou.aliyuncs.com/letao/20220107/image-61d7cfacbb271.png" }, { "id": 5, "name": "页面2", "type": 2, "store_id": 0, "link": "http://www.baidu.com", "content": "", "image": "http://noobcoder.oss-cn-hangzhou.aliyuncs.com/letao/20220107/image-61d7dc2a7a081.png" }, { "id": 6, "name": "页面3", "type": 3, "store_id": 0, "link": "", "content": "<p style=\"text-align: left;\">123</p>\r\n<p style=\"text-align: center;\">234</p>\r\n<p style=\"text-align: right;\">321</p>\r\n<p style=\"text-align: justify;\">11123123</p>\r\n<p style=\"text-align: justify; padding-left: 40px;\">234324</p>\r\n<p style=\"text-align: justify; padding-left: 80px;\">213123</p>\r\n<ul>\r\n<li style=\"text-align: justify;\">1223</li>\r\n<li style=\"text-align: justify;\">5453</li>\r\n<li style=\"text-align: justify;\">66</li>\r\n<li style=\"text-align: justify;\"><img src=\"http://noobcoder.oss-cn-hangzhou.aliyuncs.com/letao/editor/20220107/61d7dc75606ff.jpg\" alt=\"\" width=\"700\" /></li>\r\n</ul>", "image": "http://noobcoder.oss-cn-hangzhou.aliyuncs.com/letao/20220107/image-61d7dc3b724d7.png" } ] } ~~~ ## 可能出现的错误码 > 不包含常见的请求方式错误,参数丢失,用户权限验证失败 ~~~ const SLIDE_SLUG_NOT_FOUND = [ 'code' => 997001, 'msg' => '未找到轮播图标识' ]; ~~~