using learun.util;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
namespace EC.Web.Areas.LR_CodeDemo.Controllers
{
///
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.27
/// 描 述:gantt图演示
///
[Area("LR_CodeDemo")]
public class GanttDemoController : MvcControllerBase
{
#region 视图功能
///
/// 显示静态本地数据
///
///
[HttpGet]
public IActionResult Index1()
{
return View();
}
///
/// 显示树形数据
///
///
[HttpGet]
public IActionResult Index2()
{
return View();
}
///
/// 动态加载后台数据
///
///
[HttpGet]
public IActionResult Index3()
{
return View();
}
///
/// 分页显示
///
///
[HttpGet]
public IActionResult Index4()
{
return View();
}
#endregion 视图功能
#region 获取数据
///
/// 获取数据
///
/// 分页参数
///
[HttpGet]
[AjaxOnly]
public IActionResult GetTimeList(string keyword, string parentId)
{
List