IsLogin(); } /** * 列表 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-22T16:50:32+0800 */ public function Index() { // 参数 $params = $this->data_request; $params['user'] = $this->user; // 条件 $where = GoodsFavorService::UserGoodsFavorListWhere($params); // 获取总数 $total = GoodsFavorService::GoodsFavorTotal($where); $page_total = ceil($total/$this->page_size); $start = intval(($this->page-1)*$this->page_size); // 获取列表 $data_params = [ 'm' => $start, 'n' => $this->page_size, 'where' => $where, ]; $data = GoodsFavorService::GoodsFavorList($data_params); // 返回数据 $result = [ 'total' => $total, 'page_total' => $page_total, 'data' => $data['data'], ]; return ApiService::ApiDataReturn(SystemBaseService::DataReturn($result)); } /** * 取消 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-07-17 * @desc description */ public function Cancel() { $params = $this->data_request; $params['user'] = $this->user; return ApiService::ApiDataReturn(GoodsFavorService::GoodsFavorCancel($params)); } } ?>