26 lines
603 B
C#
26 lines
603 B
C#
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");
|
|
}
|
|
}
|
|
}
|