提交代码

This commit is contained in:
2023-09-27 09:59:07 +08:00
parent 74327b5a3e
commit 988d168cbf
15 changed files with 721 additions and 140 deletions
@@ -66,6 +66,10 @@ namespace FineUIPro.Web.HSSE.Check
where x.CheckSpecialId == this.CheckSpecialId
orderby x.UnitName, x.SortIndex
select x).ToList();
//新增加的三项
this.txtResponsibleUnit.Text = UnitService.GetUnitNameByUnitId(checkSpecial.ResponsibleUnit);
this.txtWorkAreaId.Text = UnitWorkService.GetUnitWorkName(checkSpecial.WorkAreaId);
this.txtQuestionType.Text = UnitService.GetQuestionTypeId(checkSpecial.QuestionType);
}
Grid1.DataSource = checkSpecialDetails;
Grid1.DataBind();