Files
2026-04-21 23:02:15 +08:00

23 lines
302 B
PHP

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