| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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(){
- 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();
- }
- }
- ?>
|