[账单]显示账单、手动生成账单

This commit is contained in:
刘祥超
2020-12-11 21:39:24 +08:00
parent ec41d9122b
commit 4955a86792
13 changed files with 247 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
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()
}