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.
 
 
 
 
 
 

27 lines
694 B

  1. using System.Web.Mvc;
  2. namespace Learun.Application.Web.Areas.LR_CodeGeneratorModule.Controllers
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2017.03.09
  9. /// 描 述:JS插件Demo
  10. /// </summary>
  11. public class PluginDemoController : MvcControllerBase
  12. {
  13. #region 视图功能
  14. /// <summary>
  15. /// JS插件展示
  16. /// </summary>
  17. /// <returns></returns>
  18. [HttpGet]
  19. public ActionResult Index()
  20. {
  21. return View();
  22. }
  23. #endregion
  24. }
  25. }