1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\api\controller;
- use think\response\Json;
- use app\api\model\User as UserModel;
- use app\api\model\UserCoupon as UserCouponModel;
- use app\api\service\User as UserService;
- use cores\exception\BaseException;
- /**
- * 用户管理
- * Class User
- * @package app\api\controller
- */
- class User extends Controller
- {
- /**
- * 当前用户详情
- * @return Json
- * @throws BaseException
- */
- public function info(): Json
- {
- // 当前用户信息
- $userInfo = UserService::getCurrentLoginUser(true);
- // 获取用户头像
- $userInfo['avatar'];
- // 获取会员等级
- $userInfo['grade'];
- return $this->renderSuccess(compact('userInfo'));
- }
- /**
- * 账户资产
- * @return Json
- * @throws BaseException
- */
- public function assets(): Json
- {
- // 当前用户信息
- $userInfo = UserService::getCurrentLoginUser(true);
- // 用户优惠券模型
- $model = new UserCouponModel;
- // 返回数据
- return $this->renderSuccess([
- 'assets' => [
- 'balance' => $userInfo['balance'], // 账户余额
- 'points' => $userInfo['points'], // 会员积分
- 'coupon' => $model->getCount($userInfo['user_id']), // 优惠券数量(可用)
- ]
- ]);
- }
- /**
- * 手机号绑定
- * @return Json
- * @throws BaseException
- */
- public function bindMobile(): Json
- {
- $model = new UserModel;
- if (!$model->bindMobile($this->postForm())) {
- return $this->renderSuccess($model->getError() ?: '操作失败');
- }
- return $this->renderSuccess('恭喜您,手机号绑定成功');
- }
- /**
- * 修改个人信息(头像昵称)
- * @return Json
- * @throws BaseException
- */
- public function personal(): Json
- {
- $model = new UserModel;
- if (!$model->personal($this->postForm())) {
- return $this->renderSuccess($model->getError() ?: '操作失败');
- }
- return $this->renderSuccess('恭喜您,信息修改成功');
- }
- }
|