> 提交时间搜索的传入格式为时间区间,如要搜索2020年6月1日至2020年6月15日的数据,则传入格式为:`2020-06-01 ~ 2020-06-15`,即起始和结束日期用`空格~空格`分隔
~~~[api]
get:/AdminApprove/my
int:role_id#审批角色ID
int:status#状态
string:keywords#搜索词
string:create_time#提交时间搜索(区间)
int:temporary#临时通行证
int:limit=15#每页显示数量
int:page=1#页码
string:order_by=update_time,desc#排序方式
<<<
success
{
"code": 0,
"msg": "获取成功",
"count": 5,
"data": [
{
"id": 8,
"approve_id": 4,
"user_id": 0,
"role_id": 9,
"reason": "东城中队审核中",
"remark": "",
"status": "0",
"update_time": "2020-05-27 10:23:06",
"create_time": "2020-05-27 10:23:06",
"approve": {
"id": 4,
"number_plate": "粤F88888",
"number_type": "蓝牌",
"driver_name": "张三",
"driver_idcard": "440202199910103344",
"driver_phone": "13888888888",
"remark": "有需要",
"item_type": "水泥",
"start": "城西大道(清城区)",
"end": 9,
"expiration_day": 7,
"status": "1",
"type": 1,
"destination": {
"id": 9,
"name": "东城中队"
},
"vehicleType": {
"id": 1,
"name": "货运临时通行证办理"
}
},
"status_text": "审核中"
}
]
}
~~~
## 字段说明
| 字段名 | 说明 |
| --- | --- |
| status_text | 我的审批状态 |
| approve.status_text | 通行证审批状态 |
## temporary参数
| 参数值 | 说明 |
| --- | --- |
| 0 | 查找长期通行证(通行天数大于3天) |
| 1 | 查找临时通行证(通行天数小于等于3天) |
| `空` | 查找所有通行证(不限通行天数) |
## order_by参数
| 参数值 | 说明 |
| --- | --- |
| create_time,asc | 按通行证提交时间,从早到晚排序 |
| create_time,desc | 按通行证提交时间,从晚到早排序 |
| start_time,asc | 按开始通行时间,从早到晚排序 |
| start_time,desc | 按开始通行时间,从晚到早排序 |
| `空` | 按最后操作时间顺序排序 |
## 我的审批状态列表
| 字段名 | 说明 |
| --- | --- |
| 0 | 审核中 |
| 1 | 已通过 |
| 2 | 未通过 |
| 3 | 已过期 |