简要描述:
- 获取项目列表
请求URL:
GET/plugin.appointment.frontend.project.get-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
sort | 否 | string | 排序。asc升序,desc降序 |
category_id | 否 | string | 分类ID |
name | 否 | string | 项目名称 |
page | 否 | int | 页码 |
city_name | 否 | string | 城市名 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"total": 4,
"per_page": 10,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 4,
"data": [
{
"id": 8,
"category_id": 17,
"title": "项目名称5",
"thumb": "http://127.0.0.1:88/attachment/images/8/2019/12/jZ5f5snfh9KND6y1a0maFhAH0FffkY.png",
"score": "0.00",
"comment_num": 0,
"appointment_num": 0
}
]
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | 项目ID |
title | string | 项目名称 |
thumb | string | 缩略图 |
score | float | 评分 |
comment_num | int | 评论数 |
appointment_num | int | 预约次数 |
备注:
- 更多返回错误代码请看首页的错误代码描述