From 9f39b3ba4a1779bf3593026e70d33702cf499739 Mon Sep 17 00:00:00 2001 From: dyy <807692433@qq.com> Date: Tue, 20 Aug 2024 16:26:06 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E8=AE=A4=E8=AF=81=E8=AE=BF=E9=97=AE=E6=97=A5=E5=BF=97?= =?UTF-8?q?=EF=BC=9A=E5=A2=9E=E5=8A=A0=E9=80=80=E5=87=BA=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Permission/Views/Perm_FunctionVisit/Index.js | 5 +++-- .../Perm_FunctionVisit/Perm_FunctionVisitEntity.cs | 14 +++++++++++++- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Permission/Views/Perm_FunctionVisit/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Permission/Views/Perm_FunctionVisit/Index.js index bba096107..19ed67ffe 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Permission/Views/Perm_FunctionVisit/Index.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/Permission/Views/Perm_FunctionVisit/Index.js @@ -65,7 +65,7 @@ var bootstrap = function ($, learun) { }, // 初始化列表 initGird: function () { - $('#gridtable').lrAuthorizeJfGrid({ + $('#gridtable').jfGrid({ url: top.$.rootUrl + '/Permission/Perm_FunctionVisit/GetPageList', headData: [ { label: "系统名称", name: "FName", width: 200, align: "left" }, @@ -76,7 +76,8 @@ var bootstrap = function ($, learun) { } }, { label: "用户名称", name: "PUName", width: 100, align: "left" }, - { label: "访问情况", name: "PContent", width: 200, align: "left" }, + { label: "访问情况", name: "PContent", width: 400, align: "left" }, + { label: "是否已退出", name: "IsOut", width: 100, align: "left" }, ], mainId: 'PVId', isPage: true, diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Permission/Perm_FunctionVisit/Perm_FunctionVisitEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Permission/Perm_FunctionVisit/Perm_FunctionVisitEntity.cs index d02780011..07ae578eb 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Permission/Perm_FunctionVisit/Perm_FunctionVisitEntity.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/Permission/Perm_FunctionVisit/Perm_FunctionVisitEntity.cs @@ -44,9 +44,21 @@ namespace Learun.Application.TwoDevelopment.Permission /// [Column("PCONTENT")] public string PContent { get; set; } - + /// + /// 是否登录成功 + /// [Column("PISLOGINSUCCESS")] public bool PIsLoginSuccess { get; set; } + /// + /// 用户编号 + /// + [Column("PUNO")] + public string PUNo { get; set; } + /// + /// 是否退出第三方应用 + /// + [Column("ISOUT")] + public bool IsOut { get; set; } #endregion #region 扩展操作