package controller import ( "app.yhyue.com/moapp/jypkg/common/src/qfw/util/jy" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" "jyseo/internal/service" ) func IndexHandler(r *ghttp.Request) { service.HtmlRender.Render(r, "index.html", g.Map{ "isIndex": true, "tdk": service.JySeoTdk.GetIndexTdk(r.Context()), "cooperateCode": r.Cookie.Get(jy.ChannelCookieName).String(), //P414 }) }