fetch(':index'); } /** * 活动详情 * @return mixed */ public function detail(){ return $this->fetch(); } /** * 活动报名页 * @return mixed */ public function book(){ $sid = input('sid', 0); if($sid){ session('sid', input('sid', 0)); } return $this->fetch(); } /** * 活动报名页 * @return mixed */ public function top(){ $sid = input('sid', 0); if($sid){ session('sid', input('sid', 0)); } return $this->fetch(); } /** * 报名详情 * @return mixed */ public function bookDetail(){ return $this->fetch(); } /** * 缘分互选 * @return mixed */ public function choose(){ return $this->fetch(); } /** * 完善资料 * @return mixed */ public function profile(){ return $this->fetch(); } /** * 匹配 * @return mixed */ public function match(){ return $this->fetch(); } } ?>