package finance import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" type IndexAction struct { actionutils.ParentAction } func (this *IndexAction) Init() { this.Nav("", "", "") } func (this *IndexAction) RunGet(params struct{}) { // TODO 暂时先跳转到账单页,将来做成Dashboard this.RedirectURL("/finance/bills") }