简要描述:
- 获取服务的评论信息
请求URL:
GET/plugin.appointment.frontend.comment.get-comment-by-order-service-id
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
order_service_id | 是 | int | 项目ID |
返回示例:
正确时返回:
{
"result": 1,
"msg": "获取评论数据成功!",
"data": {
"comment": {
"id": 10,
"order_service_id": 1,
"uid": 2612,
"nick_name": "18520632247",
"head_img_url": "http://127.0.0.1:88/attachment/images/8/2018/09/LwMnN1WSwStEswNZ0jw08SL1hkEhks.png",
"content": "评论1 content",
"store_level": 4,
"project_level": 5,
"worker_level": 4,
"images": [],
"created_at": "2019-12-26 16:11:28",
"type": 1,
"comment_id": 0,
"reply_count": 0,
"has_many_reply": []
},
"order_info": {
"id": 1,
"uniacid": 8,
"uid": 2612,
"order_id": 2,
"store_id": 15,
"worker_id": 10,
"status": 1,
"begin_time": "2020.01.01 13:30",
"has_one_order_project": {
"id": 2,
"project_id": 4,
"project_title": "项目名称2",
"project_thumb": "",
"project_price": "100.00"
},
"has_one_store": {
"id": 15,
"store_name": "门店名称2",
"longitude": "114.155593",
"latitude": "22.551731",
"address": "门店名称2地址"
},
"has_one_worker": {
"id": 10,
"name": "姓名3"
}
}
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
comment | obj | 评论信息 |
comment->nick_name | string | 用户昵称 |
comment->head_img_url | string | 用户头像 |
comment->store_level | int | 门店评分 |
comment->project_level | int | 项目评分 |
comment->worker_level | int | 技师评分 |
comment->images | array | 评论图片 |
comment->comment_id | int | 主评论ID |
comment->reply_count | int | 回复数 |
comment->has_many_reply | obj | 回复信息 |
order_info | obj | 服务信息 |
order_info->has_one_order_project | obj | 服务项目信息 |
order_info->has_one_store | obj | 服务门店信息 |
order_info->has_one_worker | obj | 服务技师信息 |
备注:
- 更多返回错误代码请看首页的错误代码描述