where('status','1')->count(); $userCount=Db::name('user')->where('status','1')->count(); $articleCount=Db::name('article')->where('status','1')->count(); View::assign('adminCount', $adminCount); View::assign('userCount', $userCount); View::assign('articleCount', $articleCount); return View(); } public function errorShow() { echo '错误'; } }