大屏
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user