// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\controller; use think\response\Json; use app\api\model\UserCoupon as UserCouponModel; use app\api\service\User as UserService; use cores\exception\BaseException; /** * 用户优惠券 * Class Coupon * @package app\api\controller */ class MyCoupon extends Controller { /** * 用户优惠券列表 * @return Json * @throws BaseException * @throws \think\db\exception\DbException */ public function list(): Json { $userId = UserService::getCurrentLoginUserId(); $model = new UserCouponModel; $list = $model->getList($userId, $this->request->param()); return $this->renderSuccess(compact('list')); } /** * 领取优惠券 * @param int $couponId 优惠券ID * @return Json * @throws BaseException */ public function receive(int $couponId): Json { $model = new UserCouponModel; if ($model->receive($couponId)) { return $this->renderSuccess('领取成功'); } return $this->renderError($model->getError() ?: '领取失败'); } }