# 会员签到

# 签到中心

  • 请求地址:users.sign/index

  • 请求方式:GET

  • 需要授权:是

返回结果

// 成功返回
{
    "code": 1, 
    "msg": "ok", 
    "data": {
        "username": "demo", 
        "point": 0, 
        "time": 1632875445, 
        "config": {
            "list": [
                {
                    "name": "1天", 
                    "point": "1", 
                    "sort": 0
                }, 
                {
                    "name": "2天", 
                    "point": "2", 
                    "sort": 1
                }, 
                {
                    "name": "3天", 
                    "point": "3", 
                    "sort": 2
                }, 
                {
                    "name": "4天", 
                    "point": "4", 
                    "sort": 3
                }, 
                {
                    "name": "5天", 
                    "point": "5", 
                    "sort": 4
                }, 
                {
                    "name": "6天", 
                    "point": "6", 
                    "sort": 5
                }, 
                {
                    "name": "7天", 
                    "point": "7", 
                    "sort": 6
                }
            ], 
            "status": 1
        }, 
        "avatar": "http://a3.top/static/images/avatar.png", 
        "is_day": 0, 
        "is_yester_day": 0, 
        "sign_count": 0, 
        "sing_total": 0
    }
}
// 失败返回
{
    "msg":"",
    "code":0
}

# 会员签到

  • 请求地址:users.sign/index

  • 请求方式:GET

  • 需要授权:是

返回结果

// 成功返回
{
    "code": 1, 
    "msg": "签到成功", 
    "data": {
        "sign_count": 1, 
        "point": 1
    }
}
// 失败返回
{
    "msg":"",
    "code":0
}

# 签到日志

  • 请求地址:users.sign/point

  • 请求方式:GET

  • 需要授权:是

请求参数

参数 类型 描述
page int 页码

返回结果

// 成功返回
{
    "code": 1, 
    "msg": "ok", 
    "data": {
        "list": [
            {
                "point": "+1", 
                "operation": "", 
                "description": "签到奖励", 
                "time": "2021-09-30 08:31:42"
            }
			// ...
        ], 
        "page": "1", 
        "total": 100, 
        "size": 10
    }
}
// 失败返回
{
    "msg":"",
    "code":0
}