mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
25 lines
508 B
Go
25 lines
508 B
Go
package db
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/iwind/TeaGo/actions"
|
|
"net/http"
|
|
)
|
|
|
|
type Helper struct {
|
|
}
|
|
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
|
if action.Request.Method != http.MethodGet {
|
|
return
|
|
}
|
|
|
|
action.Data["teaMenu"] = "db"
|
|
|
|
selectedTabbar, _ := action.Data["mainTab"]
|
|
|
|
tabbar := actionutils.NewTabbar()
|
|
tabbar.Add("数据库节点", "", "/db", "", selectedTabbar == "db")
|
|
actionutils.SetTabbar(action, tabbar)
|
|
}
|