20230428 意见收集

This commit is contained in:
2023-04-28 09:18:02 +08:00
parent e2076852e6
commit f02f92d631
31 changed files with 3544 additions and 41 deletions
+13 -2
View File
@@ -600,7 +600,7 @@ namespace FineUIPro.Web
this.XmlDataSource1.DataFile = "common/Menu_Personal.xml";
this.leftPanel.Hidden = true;
var projectUser = BLL.ProjectUserService.GetProjectUserByUserIdProjectId(this.CurrUser.LoginProjectId, this.CurrUser.UserId);
if (projectUser != null)
if (projectUser != null&&type!=BLL.Const.Menu_Opinion)
{
string roleTypes = string.Empty;
string roleCNs = string.Empty;
@@ -671,8 +671,14 @@ namespace FineUIPro.Web
this.Tab1.IFrameUrl = "~/CLGL/PipelineMaterialSumList.aspx";
this.Tab1.Title = "管道材料汇总表";
}
else
else if (type == Const.Menu_Opinion)
{
this.leftPanel.Hidden = true;
this.Tab1.IFrameUrl = "~/Opinion/OpinionCollection.aspx";
this.Tab1.Title = "意见收集";
}
else
{
this.Tab1.Title = "首页";
}
}
@@ -775,5 +781,10 @@ namespace FineUIPro.Web
{
this.MenuSwitchMethod(Const.Menu_JDGL);
}
protected void btnOpinion_Click(object sender, EventArgs e)
{
this.MenuSwitchMethod(Const.Menu_Opinion);
}
}
}