2025-05-15 16:25:33 +08:00

22 lines
301 B
PHP

<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
//rtu
return $this->view->fetch();
}
}