getMenu('admin'); // 请求结果 return $this->fetch(); } /** * 欢迎页 * * */ public function welcome() { // 加载模板 return $this->fetch(); } /** * 清理缓存 * * */ public function refresh() { // 清除缓存 Cache::flush(); // 加载模板 return json_send(['code'=>'success','msg'=>'刷新成功']); } }