22 lines
832 B
C#
22 lines
832 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace SuperMap.RealEstate.HighWay.Modules.MapShow
|
|
{
|
|
public partial class DefaultTab : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (IsPostBack)
|
|
return;
|
|
this.Master_TabSheet.Add("服务区全景图", "Default.aspx" + this.Request.Url.Query);
|
|
this.Master_TabSheet.Add("服务区月销售排名", "ServerpartRank.aspx" + this.Request.Url.Query);
|
|
this.Master_TabSheet.Add("门店月销量排名", "ServerpartShopRank.aspx" + this.Request.Url.Query);
|
|
this.Master_TabSheet.Add("商品月销售排名", "CommodityRank.aspx" + this.Request.Url.Query);
|
|
}
|
|
}
|
|
} |