修改集团客户化内容
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user