Initial commit (code only without large binaries)
This commit is contained in:
16
EdgeAdmin/internal/web/actions/default/finance/index.go
Normal file
16
EdgeAdmin/internal/web/actions/default/finance/index.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user