项目用户添加是否教育人字段

This commit is contained in:
geh
2026-01-20 16:34:07 +08:00
parent 9555acd424
commit 96ca57977d
11 changed files with 131 additions and 27 deletions
@@ -70,6 +70,11 @@ namespace FineUIPro.Web.ProjectData
{
this.drpRole.Text = role.RoleName;
}
var isEducator = BLL.ConstValue.drpConstItemList(ConstValue.Group_0001).FirstOrDefault(x => x.ConstValue == Convert.ToString(projectUser.IsEducator));
if (isEducator != null)
{
this.drpIsEducator.Text = isEducator.ConstText;
}
}
}
}