新增前端站点

This commit is contained in:
2025-04-30 18:07:45 +08:00
parent b568aad8cc
commit 3a2c9281c1
21 changed files with 1268 additions and 52 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
/**
* 后台管理系统-首页
*/
namespace app\index\controller;
use app\index\controller\Base;
use think\facade\Db;
use think\facade\View;
use think\facade\Env;
use think\facade\Config;
class Index extends Base
{
public function index()
{
return view('index');
}
}