| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- /**
- * 首页
- * @author wesmiler
- */
- namespace app\weixin\controller;
- class ActivityController extends BaseController
- {
- /**
- * 首页
- * @return mixed
- */
- public function index(){
- return $this->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();
- }
- }
- ?>
|