From 8f405091e1d200a70f7f9bb9d5eac3369e2347c9 Mon Sep 17 00:00:00 2001 From: hjhan Date: Wed, 29 Apr 2026 11:30:00 +0800 Subject: [PATCH] =?UTF-8?q?fix(auth):=20V3Controller=20=E8=A1=A5=E5=85=85?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1=E7=9A=84=E8=8F=9C=E5=8D=95=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 收益凭证、凭证审批等 v3 路由菜单因 V3Controller 的 MyAuthorize 未包含对应权限, 导致需要依赖白名单券池等其他权限才能访问页面 --- YLErpWeb/Controllers/V3Controller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YLErpWeb/Controllers/V3Controller.cs b/YLErpWeb/Controllers/V3Controller.cs index 5497c3b2..23635cc1 100644 --- a/YLErpWeb/Controllers/V3Controller.cs +++ b/YLErpWeb/Controllers/V3Controller.cs @@ -2,7 +2,7 @@ { public class V3Controller : BaseController { - [MyAuthorize("客户管理-机构账号设置,客户管理-开放API配置,风险控制-白名单券池,基础参数管理-交易日历")] + [MyAuthorize("客户管理-机构账号设置,客户管理-开放API配置,风险控制-白名单券池,基础参数管理-交易日历,交易管理-收益凭证,交易管理-凭证审批,系统管理-凭证审批流程,结算管理-资金通知书")] public ActionResult Index() { ViewBag.userId = CurUser.UserEncryptId;