| // +------------------------------------------------+ namespace app\mobile\controller; use app\common\model\Content as ContentModel; use app\common\service\Content as ContentService; class Share extends _Init { public function _initialize() { parent::_initialize(); $this->nav = 3; } public function index() { $this->list = ContentService::categoryList('share'); return $this->fetch(); } public function lists($category) { $this->list = ContentModel::where(['status' => 1, 'category_id' => $category])->order('id desc')->paginate(20); if (IS_AJAX) { if (count($this->list) > 0) { return $this->success($this->fetch('share/list')); } else { return $this->error('已经到最后一页'); } } return $this->fetch(); } public function detail($id) { parent::shareArticle(); $this->info = ContentModel::get($id); return $this->fetch(); } }