20231030项目

This commit is contained in:
2023-10-30 11:13:57 +08:00
parent b3a0193a38
commit 5e30bb0f56
36 changed files with 392 additions and 233 deletions
@@ -101,6 +101,14 @@ namespace FineUIPro.Web.ProjectData
this.txtCity.Text = project.City;
this.txtEnglishRemark.Text = project.EnglishRemark;
this.txtProjectRealCode.Text = project.ProjectRealCode;
if (project.IsCNCECShow == true)
{
this.rbIsCNCECShow.SelectedValue = "True";
}
else
{
this.rbIsCNCECShow.SelectedValue = "False";
}
}
}
else
@@ -143,6 +151,7 @@ namespace FineUIPro.Web.ProjectData
City = this.txtCity.Text.Trim(),
EnglishRemark = this.txtEnglishRemark.Text.Trim(),
ProjectRealCode=this.txtProjectRealCode.Text.Trim(),
IsCNCECShow=Convert.ToBoolean( this.rbIsCNCECShow.SelectedValue),
};
if (!string.IsNullOrEmpty(txtStartDate.Text.Trim()))