This commit is contained in:
2025-07-10 19:18:15 +08:00
parent c4f1ae6768
commit 1820fb2660
12 changed files with 701 additions and 67 deletions
@@ -54,6 +54,8 @@ namespace FineUIPro.Web.common.ProjectSet
if (getProject != null )
{
getProject.IsFace = this.ckbIsFace.Checked;
getProject.AQMAccount = this.txtAQMAccount.Text;
getProject.AQMPwd = this.txtAQMPwd.Text;
Funs.DB.SubmitChanges();
}
#endregion
@@ -294,9 +296,20 @@ namespace FineUIPro.Web.common.ProjectSet
{
///通用
var getProject = ProjectService.GetProjectByProjectId(projectId);
if (getProject != null && getProject.IsFace == true)
if (getProject != null )
{
this.ckbIsFace.Checked = true;
if (getProject.IsFace == true)
{
this.ckbIsFace.Checked = true;
}
if (!string.IsNullOrEmpty(getProject.AQMPwd))
{
this.txtAQMPwd.Text = getProject.AQMPwd;
}
if (!string.IsNullOrEmpty(getProject.AQMAccount))
{
this.txtAQMAccount.Text = getProject.AQMAccount;
}
}
var q = from x in Funs.DB.Project_Sys_Set where x.ProjectId == projectId select x;