Files
Xinyue-Search/app/index/controller/Index.php
T
2024-04-04 21:28:09 +08:00

30 lines
435 B
PHP

<?php
namespace app\index\controller;
use think\App;
use think\facade\View;
use think\facade\Request;
use think\facade\Cache;
use app\index\QfShop;
class Index extends QfShop
{
public function __construct(App $app)
{
parent::__construct($app);
}
/**
* @description: 报名页面
* @param {*}
* @return {*}
*/
public function index()
{
return View::fetch();
}
}