1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types = 1);
- namespace app\api\controller;
- use app\api\model\UserCoupon as UserCouponModel;
- use app\api\service\User as UserService;
- /**
- * 用户优惠券
- * Class Coupon
- * @package app\api\controller
- */
- class MyCoupon extends Controller
- {
- /**
- * 用户优惠券列表
- * @return \think\response\Json
- * @throws \cores\exception\BaseException
- * @throws \think\db\exception\DbException
- */
- public function list(): \think\response\Json
- {
- $userId = UserService::getCurrentLoginUserId();
- $model = new UserCouponModel;
- $list = $model->getList($userId, $this->request->param());
- return $this->renderSuccess(compact('list'));
- }
- /**
- * 领取优惠券
- * @param int $couponId
- * @return \think\response\Json
- * @throws \cores\exception\BaseException
- */
- public function receive(int $couponId): \think\response\Json
- {
- $model = new UserCouponModel;
- if ($model->receive($couponId)) {
- return $this->renderSuccess([], '领取成功');
- }
- return $this->renderError($model->getError() ?: '领取失败');
- }
- }
|