auth->id; $commentList = \addons\cms\model\Comment::where('user_id', $user_id) ->where('status', 'normal') ->order('id', 'desc') ->paginate(10, null); $this->view->assign('config', array_merge($this->view->config, ['jsname' => ''])); $this->view->assign('commentList', $commentList); $this->view->assign('title', '我发表的评论'); return $this->view->fetch(); } }