切换导航条
此项目
正在载入...
登录
何书鹏
/
anttest
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
何书鹏
4 years ago
提交
ec151eb2374b52edfb8ed1b0281d65a5a9c59094
1 个父辈
9210f6d4
我的评价
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
55 行增加
和
0 行删除
application/api/controller/GoodsComment.php
application/api/controller/GoodsComment.php
查看文件 @
ec151eb
...
...
@@ -104,4 +104,59 @@ class GoodsComment extends Base
$this
->
success
(
'筛选类型'
,
$type
);
}
/**
* @ApiWeigh (95)
* @ApiTitle (我的评价)
* @ApiSummary (我的评价)
* @ApiMethod (GET)
*
* @ApiHeaders (name=token, type=string, required=true, description="请求的token")
*
* @ApiReturn({
"code": 1,
"msg": "我的评价",
"time": "1609221855",
"data": {
"total": 1, //数据总数
"per_page": 10,
"current_page": 1,
"last_page": 1,
"data": [{
"id": 1,
"goods_id": 6,
"order_id": 17,
"order_item_id": 19,
"user_id": 1,
"level": 5,
"content": "还行吧", //评价内容
"images": [ //评价图片
"https://yixiaoxian.qiniu.broing.cn/uploads/20201229/5c088559ebcc3f0ffcda663f04dfbeb2.png"
],
"video": null, //评价视频
"status": "show",
"admin_id": 0,
"reply_content": null,
"replytime": null,
"createtime": "2020-12-29", //评价时间
"updatetime": 1609221767,
"deletetime": null,
"user": { //评价用户
"id": 1, //用户ID
"nickname": "wn", //昵称
"avatar": "https://thirdwx.qlogo.cn/mmopen/vi_32/C8dW9GFDHAy3wwnZwoqibeNciaN6jUZXp6QCrtjehdF3GyHickt9oiaDSibMBhATtF7f19w4AgpcQIR1Mibwu1pjYKEA/132", //头像
"url": "/u/1"
}
}]
}
})
*/
public
function
myComment
()
{
$params
=
$this
->
request
->
get
();
$goodsComments
=
\addons\shopro\model\GoodsComment
::
getMyList
(
$params
);
$this
->
success
(
'我的评价'
,
$goodsComments
);
}
}
...
...
请
注册
或
登录
后发表评论