From cddeb04d1d702e5d9b3b6173f0f9304c6bdf1c47 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期六, 22 三月 2025 15:54:35 +0800
Subject: [PATCH] 修改字体大小前
---
DevApp/Gs.DevApp/UserControl/ShowFilter.cs | 42 +++++++++++++++++++++++++++++++++++++++++-
1 files changed, 41 insertions(+), 1 deletions(-)
diff --git a/DevApp/Gs.DevApp/UserControl/ShowFilter.cs b/DevApp/Gs.DevApp/UserControl/ShowFilter.cs
index 8554998..7c20e5e 100644
--- a/DevApp/Gs.DevApp/UserControl/ShowFilter.cs
+++ b/DevApp/Gs.DevApp/UserControl/ShowFilter.cs
@@ -410,7 +410,45 @@
var _obj = new
{
guid = mxGuid,
- sqlField = _txt
+ sqlField = _txt,
+ fType=0,
+ };
+ try
+ {
+ var strJson = UtilityHelper.HttpPost("",
+ "Fm/EditCol",
+ JsonConvert.SerializeObject(_obj));
+ var _rtn = UtilityHelper.ReturnToDynamic(strJson);
+ if (_rtn.rtnCode <= 0)
+ {
+ MsgHelper.ShowError("鎻愮ず锛�" + _rtn.rtnMsg);
+ }
+ }
+ catch (Exception ex)
+ {
+ MsgHelper.Warning("鎻愮ず锛�" + ex.Message);
+ }
+ }
+ }
+ }
+
+ private void repositoryItemComboBox3Sql_EditValueChanged(object sender, EventArgs e)
+ {
+ ComboBoxEdit comboBox = sender as ComboBoxEdit;
+ if (comboBox != null)
+ {
+ GridView myView = (gcQuery.MainView as GridView);
+ int dataIndex = myView.GetDataSourceRowIndex(myView.FocusedRowHandle);
+ string _txt = comboBox.Text.Trim();
+ var dr = myView.GetDataRow(dataIndex);
+ var mxGuid = dr["guid"].ToString();
+ if (mxGuid.Length > 0 )
+ {
+ var _obj = new
+ {
+ guid = mxGuid,
+ fType = 1,
+ sqlFieldType = _txt
};
try
{
@@ -431,5 +469,7 @@
}
}
#endregion
+
+
}
}
\ No newline at end of file
--
Gitblit v1.9.3