修改施工日志

This commit is contained in:
2023-09-14 10:43:51 +08:00
parent 2b6b7c5d5e
commit c96394016a
11 changed files with 2347 additions and 173 deletions
+7
View File
@@ -326,6 +326,13 @@ namespace FineUIPro.Web
if (!string.IsNullOrEmpty(Request.Params["projectId"]))
{
Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(Request.Params["projectId"]);
if (!projectlist.Contains(project))
{
projectlist.Add(project);
this.drpProject.DataSource = projectlist;
this.drpProject.DataBind();
}
this.drpProject.SelectedValue = Request.Params["projectId"];
}