简要描述:
- 用户列表
action
域名 /admin/user/index
返回示例:
正确时返回:
{
"result": 1,
"msg": '成功'
"data": {
total: 4,
per_page: 15,
current_page: 1,
last_page: 1,
next_page_url: null,
prev_page_url: null,
from: 1,
to: 4,
data: [
{
uid: 4,
username: "1231123",
status: 2,
type: 1,
remark: "123",
application_number: 123,
endtime: "1970年01月01日",
created_at: "1552627874",
updated_at: "1552987148",
create_at: "2019年03月15日",
state: "已过期"
}
]
},
}
错误时返回:
{
"result": 0,
"msg": '失败'
"data": ""
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
uid | int | 用户id |
username | string | 用户名 |
status | int | 状态: 3:无效; 2:有效 |
state | string | 状态 |
create_at | string | 注册时间 |
endtime | string | 到期时间 |
备注:
- 更多返回错误代码请看首页的错误代码描述