using Microsoft.AspNetCore.Mvc;using WMS.BZWeb;
namespace WMS.BZWeb
{
///
/// 描 述:字体图标查看
///
[Area("DevelopmentManager")]
public class IconController : MvcControllerBase
{
#region 视图功能
///
/// 图标查看
///
///
[HttpGet]
public ActionResult Index()
{
return View();
}
///
/// 手机图标查看
///
///
[HttpGet]
public ActionResult AppIndex()
{
return View();
}
#endregion
}
}