简要描述:
- 获取可预约技师列表
请求URL:
GET/plugin.appointment.frontend.worker.get-appointment-workers
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
store_id | 是 | int | 门店ID |
project_id | 是 | int | 项目ID |
work_date | 是 | string | 服务日期(YYYY-mm-dd格式) |
start_time | 是 | string | 服务开始时间(H:i格式) |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": [
"employee_list": {
{
"id": 10,
"uniacid": 8,
"name": "姓名3",
"thumb": "http://127.0.0.1:88/attachment/images/8/2019/12/tg0gx4ocO9cJH9IauxUo6GJ69oL99J.png",
"store_id": 15,
"score": "4.11",
"content": "",
"description": "",
"status": 0
},
{
"id": 11,
"uniacid": 8,
"name": "姓名4",
"thumb": "http://127.0.0.1:88/attachment/images/8/2019/12/uhVq7EHe72b2bB6c67Jc2lajeAzZ78.png",
"store_id": 15,
"score": "0.00",
"content": "desc,desc",
"description": "",
"status": 1
}
},
"appointment_state":0
]
}
错误时返回:
employee_list返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | ID |
name | string | 姓名 |
thumb | string | 缩略图 |
store_id | int | 门店ID |
score | float | 评分 |
content | string | 描述 |
status | int | 状态 0:正常 1:已预约 |
description | string | 技师简介 |
appointment_state返回参数说明:0未约满,1约满
备注:
- 更多返回错误代码请看首页的错误代码描述