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.
41 lines
856 B
41 lines
856 B
3 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||
|
|
||
|
namespace EC.Web.Areas.LR_SystemModule.Controllers
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 版 本 EasyCode EC管理后台
|
||
|
/// Copyright (c) 2019-present EC管理有限公司
|
||
|
/// 创建人:tobin
|
||
|
/// 日 期:2019.10.23
|
||
|
/// 描 述:logo图片设置
|
||
|
/// </summary>
|
||
|
[Area("LR_SystemModule")]
|
||
|
public class LogoImgController : MvcControllerBase
|
||
|
{
|
||
|
#region 视图功能
|
||
|
|
||
|
/// <summary>
|
||
|
/// PC端图片设置
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public IActionResult PCIndex()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 移动端图片设置
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
[HttpGet]
|
||
|
public IActionResult AppIndex()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
#endregion 视图功能
|
||
|
}
|
||
|
}
|