简要描述:

  • 修改状态

action

域名 /admin/user/app_list

参数:

参数名 是否必须 类型 说明
uid int 用户id

返回示例:

正确时返回:

 {
    "result": 1,
    "msg": '成功'
    "data": {
		uid: 2,
		username: "123",
		status: 2,
		type: 3,
		remark: "123",
		application_number: 123,
		endtime: 123,
		owner_uid: 0,
		salt: "bgVJvOxU",
		joinip: "127.0.0.1",
		lastvisit: 1552616775,
		lastip: "127.0.0.1",
		created_at: "1552616775",
		updated_at: "1552987148",
		deleted_at: null,
		total: 2,
		current_page: 1,
		per_page: 15,
		has_many_app_user: [
			{
				id: 1,
				uniacid: 2,
				uid: 2,
				role: "operator",
				rank: 0,
				role_name: "操作员",
				has_one_app: {
					id: 2,
					img: "http://dev8.yunzshop.com/storage/app/public/201903126e4e5917d595ee2db77d3f5542bb8bed.png",
					name: "测试2",
					validity_time: 1553961600,
					status: 1,
					url: "https://dev8.yunzshop.com",
					creator: 1,
					status_name: "启用"
				}
			}
		]
	}
  }

错误时返回:

  {
    "result": 0,
    "msg": '未获取到该用户'
    "data": ""
  }
  or
  {
    "result": 0,
    "msg": '该用户暂时没有平台'
    "data": ""
  }

返回参数说明:

参数名 类型 说明
username string 用户名
has_many_app_user.has_one_app.name string 平台名称
has_many_app_user.role string 账号类型 (manager:管理员; operator: 操作员; clerk:店员)
has_many_app_user.role_name string 账号类型
total int 总数
current_page int 当前页
per_page int 每一页多少条数据

备注:

  • 更多返回错误代码请看首页的错误代码描述