From 49e7d052cc72a98b10ba9c06268c8a1d79e94a5b Mon Sep 17 00:00:00 2001 From: lu <99954486@qq.com> Date: 星期二, 15 四月 2025 11:14:10 +0800 Subject: [PATCH] fqc --- DevApp/Gs.DevApp/DevFrm/PDA/SelectPage.cs | 15 +++------------ 1 files changed, 3 insertions(+), 12 deletions(-) diff --git a/DevApp/Gs.DevApp/DevFrm/PDA/SelectPage.cs b/DevApp/Gs.DevApp/DevFrm/PDA/SelectPage.cs index 497d181..c23e3b5 100644 --- a/DevApp/Gs.DevApp/DevFrm/PDA/SelectPage.cs +++ b/DevApp/Gs.DevApp/DevFrm/PDA/SelectPage.cs @@ -2,7 +2,6 @@ using Gs.DevApp.ToolBox; using Newtonsoft.Json; using System; -using System.Collections.Generic; using System.Data; using System.Windows.Forms; @@ -10,8 +9,6 @@ { public partial class SelectPage : DevExpress.XtraEditors.XtraForm { - private readonly List<FilterEntity> _filterList = new List<FilterEntity>(); - private readonly string _webServiceName = "MesSysPageviewManager/"; private string userGuid = ""; /// <summary> @@ -24,10 +21,7 @@ { InitializeComponent(); this.userGuid = _userGuid; - Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", (value) => - { - - }); + Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false); getPageList(1); btnIn.Click += (s, e) => { @@ -66,16 +60,14 @@ }; } - /// <summary> /// </summary> /// <param name="curPage">绗嚑椤�</param> /// <param name="pageSize">姣忛〉鍑犳潯</param> private void getPageList(int curPage) { - var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); - var pgq = new PageQueryModel(curPage, 999999, "a.PAGE_GROUP", "asc", - "", _sbSqlWhere.ToString()); + var _sbSqlWhere = ""; + var pgq = new PageQueryModel(curPage, 999999, "a.PAGE_GROUP", "asc", "", _sbSqlWhere.ToString(), userGuid); var json = JsonConvert.SerializeObject(pgq); try { @@ -105,6 +97,5 @@ MsgHelper.Warning("鎻愮ず锛�" + ex.Message); } } - } } \ No newline at end of file -- Gitblit v1.9.3