Files
huangjingfen/pro_v3.5.1/app/controller/api/pc/Cart.php

46 lines
1.3 KiB
PHP
Raw Normal View History

2026-03-07 22:29:07 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\api\pc;
use app\Request;
use app\services\pc\CartServices;
use think\annotation\Inject;
use think\Response;
/**
* Class CartController
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/19
* @package app\controller\api\pc
*/
class Cart
{
/**
* @var CartServices
*/
#[Inject]
protected CartServices $services;
/**
* 获取用户购物车列表
* @param Request $request
* @return Response
*/
public function getCartList(Request $request): Response
{
$uid = $request->uid();
$data = $this->services->getCartList((int)$uid);
return app('json')->successful($data);
}
}