ComplianceServer/oldcode/Core.Web/Controllers/AuditController.cs

34 lines
975 B
C#

using Core.Web.App_Start;
using Core.Web.WebHelper;
using CRM.Core.BLL;
using CRM.Core.BLL.Application.B;
using CRM.Core.BLL.Application.Bill;
using CRM.Core.BLL.Util;
using CRM.Core.Common.Layui;
using CRM.Core.DTO.Bill;
using CRM.Core.Model.Entity;
using CRM.Core.Model.Enum;
using System;
using System.Linq;
using System.Web.Mvc;
using WX.CRM.WebHelper;
namespace Core.Web.Controllers
{
public class AuditController : BaseController
{
private CACHE_BL cache_BL = new CACHE_BL();
[HttpGet]
[AuthorizeRedirect(RightsConfig.CONST_实名认证审核, ToolBarConfig.CONST_NotButton, true)]
public ActionResult Index()
{
ViewBag.rightCode = RightsConfig.CONST_实名认证审核;
ViewBag.eid = Eid;
ViewBag.userName = UserName;
var webapi = cache_BL.GetValue_Parameter(Parameter.Hg_Core_WebApi);
ViewBag.webapi = webapi;
return View();
}
}
}