修改集团客户化内容

This commit is contained in:
2023-01-04 15:27:19 +08:00
parent bb7bdee235
commit 3fb8feb4f3
214 changed files with 84021 additions and 120 deletions
+19 -2
View File
@@ -299,7 +299,12 @@ namespace FineUIPro.Web
{
Alert.ShowInTop("当前密码不安全,请尽快更改!", MessageBoxIcon.Warning);
}
this.hdHomePage.Text = "1";
if (this.CurrUser.HomePageType == "2")
{
this.Tab1.IFrameUrl = "~/common/main2.aspx";
this.hdHomePage.Text = "2";
}
var getW = WeatherService.GetWeather(null);
if (getW != null)
{
@@ -536,6 +541,18 @@ namespace FineUIPro.Web
ShowNotify("菜单刷新完成!", MessageBoxIcon.Success);
}
protected void btnChangeHomePage_Click(object sender, EventArgs e)
{
if (this.hdHomePage.Text == "1")
{
this.hdHomePage.Text = "2";
this.Tab1.IFrameUrl = "~/common/main2.aspx";
}
else
{
this.hdHomePage.Text = "1";
this.Tab1.IFrameUrl = "~/common/main.aspx";
}
}
}
}