mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-13 19:22:48 +00:00
120 lines
3.0 KiB
PHP
120 lines
3.0 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的多应用管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\api\controller\member;
|
||
|
||
use app\service\api\login\AuthService;
|
||
use app\service\api\member\MemberLogService;
|
||
use app\service\api\member\MemberService;
|
||
use core\base\BaseApiController;
|
||
use think\Response;
|
||
|
||
class Member extends BaseApiController
|
||
{
|
||
|
||
/**
|
||
* 会员信息
|
||
* @return Response
|
||
*/
|
||
public function info()
|
||
{
|
||
return success(( new MemberService() )->getInfo());
|
||
}
|
||
|
||
/**
|
||
* 会员中心
|
||
* @return Response
|
||
*/
|
||
public function center()
|
||
{
|
||
return success(( new MemberService() )->center());
|
||
}
|
||
|
||
/**
|
||
* 修改会员
|
||
* @param $field
|
||
* @return Response
|
||
*/
|
||
public function modify($field)
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'value', '' ],
|
||
[ 'field', $field ],
|
||
]);
|
||
$data[ $field ] = $data[ 'value' ];
|
||
$data['member_id'] = $this->request->memberId();
|
||
$this->validate($data, 'app\validate\member\Member.modify');
|
||
( new MemberService() )->modify($field, $data[ 'value' ]);
|
||
return success('MODIFY_SUCCESS');
|
||
}
|
||
|
||
/**
|
||
* 编辑会员
|
||
* @return Response
|
||
*/
|
||
public function edit()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'data', [] ],
|
||
]);
|
||
( new MemberService() )->edit($data[ 'data' ]);
|
||
return success('MODIFY_SUCCESS');
|
||
}
|
||
|
||
/**
|
||
* 绑定手机号
|
||
* @return Response
|
||
*/
|
||
public function mobile()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'mobile', '' ],
|
||
[ 'mobile_code', '' ],
|
||
]);
|
||
return success(( new AuthService() )->bindMobile($data[ 'mobile' ], $data[ 'mobile_code' ]));
|
||
}
|
||
|
||
/**
|
||
* 会员日志
|
||
* @return Response
|
||
*/
|
||
public function log()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'route', '' ],
|
||
[ 'params', '' ],
|
||
[ 'pre_route', '' ]
|
||
]);
|
||
( new MemberLogService() )->log($data);
|
||
return success();
|
||
}
|
||
|
||
/**
|
||
* 获取会员码
|
||
*/
|
||
public function qrcode()
|
||
{
|
||
return success(( new MemberService() )->getQrcode());
|
||
}
|
||
|
||
/**
|
||
* 获取手机号
|
||
* @return Response
|
||
*/
|
||
public function getMobile()
|
||
{
|
||
$data = $this->request->params([
|
||
[ 'mobile_code', '' ],
|
||
]);
|
||
return success(( new AuthService() )->getMobile($data[ 'mobile_code' ]));
|
||
}
|
||
}
|