初始化提交

This commit is contained in:
2025-09-19 17:42:11 +08:00
commit fde5919d99
84 changed files with 55570 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Web.Http;
namespace .Controller
{
public class IndexController : BaseController
{
//[HttpGet, Route("index/error")]
//public ActionResult Error()
//{
// return Html("/Sys/Index/Error");
//}
/// <summary>
/// 后台首页视图。
/// </summary>
/// <returns></returns>
[HttpGet, Route("")]
public ActionResult Index()
{
return Resouce("/Views/Login.html", "text/html");
}
}
}