多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
**简要描述** - 商品评价列表页 **请求URL:** - ` index/Goods/goodsComment ` **参数:** |参数名|必选|类型|说明| |:---- |:---|:----- |----- | |goods_id | 是 | int | 商品id | |page | 是 | int | 页码,首次为1 | |limit | 是 | int | 每页个数,大于0 | **返回示例** ``` { "code": 1, "msg": "请求成成功", "data": { "good_rate": "100%", "good": 9, "midd": 0, "bad": 0, "count": 9, "list": [ { "product_score": 5, "service_score": 4, "content": "东西很好,好评,哈哈", "time": "2020-04-13 10:57:41", "nick_name": "小黄鸭", "avatar": "/uploads/20200403/thumb_88f43b86c2978fc2ccab6ec573f3275e.png", "imgs": "/uploads/20200318/5babdac5c158b5ed2a9d7d62aa977c08.jpg,/uploads/20200318/3a07384869546915db4e21da9c6d0de1.jpg", "is_reply": 1, "reply_time": "2020-04-21 14:05:37", "reply_content": "谢谢您的好评,我们会继续努力的" }, { "product_score": 5, "service_score": 5, "content": "用户未填写评价,系统默认好评", "time": "2020-05-14 13:41:08", "nick_name": "小黄鸭", "avatar": "/uploads/20200403/thumb_88f43b86c2978fc2ccab6ec573f3275e.png", "imgs": null, "is_reply": 0, "reply_time": null, "reply_content": null }, ] } } ``` **data返回值说明** |参数|类型|描述| |:-------|:-------|:-------| | good_rate| string| 好评率| | good| number| 好评个数| | midd| number| 中评个数| | bad| number| 产品个数| | count| number| 评价总数| | - list| object| 评价信息列表| | nick_name| string| 用户昵称| | avatar| string| 用户头像| | product_score| number| 商品评分| | content| string| 评价信息| | imgs| string| 评价图片,英文逗号隔开| | time| string| 评价时间| | is_reply| number| 0 未回评;1已回评| | reply_time| string| 回评时间| | reply_content| string| 回评内容|