You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud-admin.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\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
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'];
|
|
$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());
|
|
}
|
|
}
|
|
|