## 工单分配
### 列表_搜索
~~~[api]
get:admin/user/?act=list
int:page=1#第几页
int:limit=10#一页显示多少内容
content#搜索内容
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
### 分配员工
#### 列表_搜索
~~~
type 0空闲 1有单 2请假
~~~
~~~[api]
get:admin/staff/?act=staff_list
int:page=1#第几页
int:limit=10#一页显示多少内容
content#搜索内容
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
#### 员工当日工单
~~~[api]
get:admin/work/?act=count
*staff_id#员工ID
*type#工单类型
<<<
success
{
"code": 0,
"msg": "获取成功!",
"count": 10
}
<<<
error
~~~
#### 分配
~~~
staff_id 接单员工ID,用|隔开
type 1质检工单 2服务工单
~~~
~~~[api]
get:admin/work/?act=allocation
*user_id#客户ID
*staff_id#接单员工ID
*type#工单类型
<<<
success
{
"code": 0,
"msg": "分配成功!"
}
<<<
error
~~~