|
using System.Web.Mvc;
|
|
using WX.CRM.WebHelper;
|
|
|
|
namespace WX.CRM.WEB.Controllers.Base
|
|
{
|
|
public class UtilController : BaseController
|
|
{
|
|
//
|
|
// GET: /Util/
|
|
[AuthorizeRedirect(Roles = InitRights.CONST_小工具)]
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
}
|
|
}
|