2026.04.10

This commit is contained in:
2026-04-10 14:35:57 +08:00
parent 8a61b56389
commit 1b324edf2a
39 changed files with 1787 additions and 104 deletions
@@ -53,7 +53,8 @@ namespace FineUIPro.Web.common.ProjectSet
var getProject = ProjectService.GetProjectByProjectId(projectId);
if (getProject != null )
{
getProject.IsFace = this.ckbIsFace.Checked;
getProject.IsFace = this.ckbIsFace.Checked;
getProject.IsAutoFetch = this.ckbIsAutoFetch.Checked;
getProject.AQMAccount = this.txtAQMAccount.Text;
getProject.AQMPwd = this.txtAQMPwd.Text;
Funs.DB.SubmitChanges();
@@ -302,6 +303,10 @@ namespace FineUIPro.Web.common.ProjectSet
{
this.ckbIsFace.Checked = true;
}
if (getProject != null && getProject.IsAutoFetch == true)
{
this.ckbIsAutoFetch.Checked = true;
}
if (!string.IsNullOrEmpty(getProject.AQMPwd))
{
this.txtAQMPwd.Text = getProject.AQMPwd;