增加国家/地区封禁管理

This commit is contained in:
GoEdgeLab
2020-11-06 11:02:26 +08:00
parent a3bd0e816d
commit 18d987b582
15 changed files with 301 additions and 24 deletions

View File

@@ -0,0 +1,16 @@
package ipadmin
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
type ProvincesAction struct {
actionutils.ParentAction
}
func (this *ProvincesAction) Init() {
this.Nav("", "", "ipadmin")
}
func (this *ProvincesAction) RunGet(params struct{}) {
this.Data["subMenuItem"] = "province"
this.Show()
}