refactor: 迁移初始化参数缓存并优化等待界面

This commit is contained in:
cyf
2026-08-27 11:46:06 +08:00
parent 8472004711
commit b33c847b27
16 changed files with 209 additions and 61 deletions
+13
View File
@@ -25,6 +25,7 @@ using Lskj.Main.Model;
using Lskj.Business;
using System.Collections;
using System.Threading.Tasks;
using Lskj.Core;
namespace Lskj.PubModule
{
@@ -173,6 +174,18 @@ namespace Lskj.PubModule
}
if (!e.Cancel)
{
if (!string.IsNullOrEmpty(this.mControl.SysModel.FrmCloseStored))
{
string sql = this.mControl.SysModel.FrmCloseStored;
if (this.mControl.SearchObj != null) sql = this.mControl.SearchObj.ReplaceControlValue(sql);
sql = ReplaceHelper.ReplaceUserInfo(sql);
string result = SqlHelper.ExecuteScalar(sql) + "";
if (!string.IsNullOrEmpty(result)) MessageUtil.Show(result);
}
}
}
#region