mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-13 18:30:24 +08:00
17 lines
354 B
Go
17 lines
354 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")
|
|||
|
|
}
|