You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
825 B
45 lines
825 B
3 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace EC.Web.Areas.LR_CodeDemo.Controllers
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.09.27
|
||
|
/// 描 述:表格应用
|
||
|
/// </summary>
|
||
|
[Area("LR_CodeDemo")]
|
||
|
public class GridDemoController : MvcControllerBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 普通表格
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public IActionResult CommonIndex()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编辑表格
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public IActionResult EditIndex()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 报表表格
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public IActionResult ReportIndex()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
}
|
||
|
}
|