增加数据穿透界面

This commit is contained in:
2023-06-07 18:55:33 +08:00
parent e66750312e
commit b592ccfe5e
358 changed files with 30974 additions and 2388 deletions
@@ -61,6 +61,19 @@ namespace FineUIPro.Web.HSSE.Solution
{
this.txtIsArgument.Text = "否";
}
if (largerHazard.IsSuperLargerHazard == true)
{
this.txtIsSuperLargerHazard.Text = "是";
}
else
{
this.txtIsSuperLargerHazard.Text = "否";
}
if (largerHazard.TrainPersonNum != null)
{
this.txtTrainPersonNum.Text = largerHazard.TrainPersonNum.ToString();
}
this.drpStates.SelectedValue = largerHazard.States;
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtRemark.Text = HttpUtility.HtmlDecode(largerHazard.Remark);
}