Share.php
344 字节
<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Share extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function questionInfo()
{
$this->view->assign('title', '题目详情');
return $this->view->fetch();
}
}