IsLogin(); } /** * 商品浏览列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-10-09 * @desc description */ public function Index() { // 参数 $params = $this->data_post; $params['user'] = $this->user; // 分页 $number = 10; $page = max(1, isset($this->data_post['page']) ? intval($this->data_post['page']) : 1); // 条件 $where = GoodsBrowseService::UserGoodsBrowseListWhere($params); // 获取总数 $total = GoodsBrowseService::GoodsBrowseTotal($where); $page_total = ceil($total/$number); $start = intval(($page-1)*$number); // 获取列表 $data_params = array( 'm' => $start, 'n' => $number, '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_post; $params['user'] = $this->user; return ApiService::ApiDataReturn(GoodsBrowseService::GoodsBrowseDelete($params)); } } ?>