|
@@ -386,7 +386,7 @@ func (tg *Tags) StrategyIndex() {
|
|
|
tg.T["areaList"] = jyutil.AreaInfo
|
|
|
tg.T["tdk"] = jyutil.GetTdk("strategy", "")
|
|
|
tg.T["Home"] = qu.If(platform == "PC", "/", "/jyapp/jylab/mainSearch").(string)
|
|
|
- tg.T["currentLocation"] = jyutil.NavigationBar(qu.ObjToString(config.Seoconfig["strategyCode"]))
|
|
|
+ tg.T["currentLocation"] = jyutil.NavigationBar(qu.ObjToString(config.Seoconfig["strategyCode"]), false)
|
|
|
tg.Render("/tags/strategy.html", &tg.T)
|
|
|
}
|
|
|
|
|
@@ -434,7 +434,7 @@ func (tg *Tags) Class(thisCode string, pageNumStr string) {
|
|
|
tg.T["classNav"] = jyutil.ClassNavBar()
|
|
|
tg.T["hotArea"] = jyutil.HotAreas
|
|
|
tg.T["infoTypeList"] = infoTypeList
|
|
|
- tg.T["currentLocation"] = jyutil.NavigationBar(thisCode)
|
|
|
+ tg.T["currentLocation"] = jyutil.NavigationBar(thisCode, false)
|
|
|
tg.T["areaList"] = jyutil.AreaInfo
|
|
|
tg.T["Home"] = qu.If(platform == "PC", "/", "/jyapp/jylab/mainSearch").(string)
|
|
|
tg.T["prevPage"] = qu.If(prevPage != "", fmt.Sprintf("/jySchool/%s/index_%s.html", thisCode, prevPage), "").(string)
|
|
@@ -470,7 +470,7 @@ func (tg *Tags) Details(id string) {
|
|
|
tg.T["infoTypeList"] = infoTypeList
|
|
|
tg.T["areaList"] = jyutil.AreaInfo
|
|
|
tg.T["Home"] = qu.If(platform == "PC", "/", "/jyapp/jylab/mainSearch").(string)
|
|
|
- currentLocation := jyutil.NavigationBar(tCode)
|
|
|
+ currentLocation := jyutil.NavigationBar(tCode, true)
|
|
|
tg.T["currentLocation"] = append(currentLocation, jyutil.Navigation{Name: qu.ObjToString((*data)["s_title"])})
|
|
|
tg.T["tdk"] = jyutil.GetTdk("strategy", "")
|
|
|
tg.Render("/tags/details.html", &tg.T)
|