mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2026-01-03 17:46:37 +08:00
19 lines
368 B
Go
19 lines
368 B
Go
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")
|
||
|
||
this.Show()
|
||
}
|