From 9096edb026d5d411fddeeb4281b24d67160567d2 Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期日, 23 三月 2025 09:39:31 +0800 Subject: [PATCH] 查询 --- DevApp/Gs.DevApp/DevFrm/Sys/SysLog.cs | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/Sys/SysLog.cs b/DevApp/Gs.DevApp/DevFrm/Sys/SysLog.cs index 820faf3..d16e374 100644 --- a/DevApp/Gs.DevApp/DevFrm/Sys/SysLog.cs +++ b/DevApp/Gs.DevApp/DevFrm/Sys/SysLog.cs @@ -8,7 +8,6 @@ using Gs.DevApp.ToolBox; using Gs.DevApp.UserControl; using Newtonsoft.Json; -using Newtonsoft.Json.Linq; namespace Gs.DevApp.DevFrm.Sys { @@ -38,7 +37,7 @@ } private async void GridView1_ColumnFilterChanged(object sender, EventArgs e) { - Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); + _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); await Task.Delay(100); getPageList(1); } @@ -62,7 +61,7 @@ gridView1.ColumnFilterChanged -= GridView1_ColumnFilterChanged; gridView1.ActiveFilter.Clear(); gridView1.ColumnFilterChanged += GridView1_ColumnFilterChanged; - var frm = new ShowFilter(gridView1.Columns, _filterList); + var frm = new ShowFilter(gridView1.Columns, _filterList,this.GetType().FullName); frm.UpdateParent += Frm_UpdateParent; frm.ShowDialog(); } -- Gitblit v1.9.3