移动端检查修改

This commit is contained in:
geh
2025-09-16 10:56:03 +08:00
parent 19ea2f2363
commit bf9f9c44b5
10 changed files with 109 additions and 55 deletions
@@ -34,6 +34,19 @@ namespace FineUIPro.Web.HSSE.Check
{
if (!IsPostBack)
{
this.ProjectId = this.CurrUser.LoginProjectId;
if (!string.IsNullOrEmpty(Request.Params["projectId"]) && Request.Params["projectId"] != this.CurrUser.LoginProjectId)
{
this.ProjectId = Request.Params["projectId"];
}
this.ucTree.UnitId = this.CurrUser.UnitId;
this.ucTree.ProjectId = this.ProjectId;
if (!string.IsNullOrEmpty(this.CurrUser.LoginProjectId))
{
this.panelLeftRegion.Hidden = true;
// this.Grid1.Columns[0].Hidden = true;
}
BindGrid();
}
}