IsLogin(); } /** * 列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-10-09 * @desc description */ public function Index() { // 参数 $params = $this->data_request; $params['user'] = $this->user; // 条件 $where = GoodsBrowseService::UserGoodsBrowseListWhere($params); // 获取总数 $total = GoodsBrowseService::GoodsBrowseTotal($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 = GoodsBrowseService::GoodsBrowseList($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-09-14 * @desc description */ public function Delete() { $params = $this->data_request; $params['user'] = $this->user; return ApiService::ApiDataReturn(GoodsBrowseService::GoodsBrowseDelete($params)); } } ?>