29 lines
993 B
PHP
Executable File
29 lines
993 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
namespace app\api\controller;
|
|
use app\api\logic\CollectLogic;
|
|
|
|
class Collect extends ApiBase{
|
|
/**
|
|
* note 商品收藏列表
|
|
* create_time 2020/10/29 10:17
|
|
*/
|
|
public function getCollectGoods(){
|
|
$collect = CollectLogic::getCollectGoods($this->user_id,$this->page_no,$this->page_size);
|
|
$this->_success('获取成功',$collect);
|
|
}
|
|
/**
|
|
* note 商品收藏操作
|
|
* create_time 2020/10/29 10:17
|
|
*/
|
|
public function handleCollectGoods(){
|
|
$post = $this->request->post();
|
|
$collect = CollectLogic::handleCollectGoods($post,$this->user_id);
|
|
$this->_success('获取成功',$collect);
|
|
}
|
|
} |