<?php /** * Created by PhpStorm. * User: zhonglei * Date: 18/5/18 * Time: 15:30 */ namespace Frontend\Controller\Index; class SignController extends AbstractController { /** * 跳转至线下课程签到页接口 */ public function Index() { $article_id = I('get.article_id', 0, 'intval'); redirectFront('/app/page/train/train-course-sign', [ 'article_id' => $article_id, ]); } }