mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-14 04:10:26 +08:00
17 lines
328 B
Go
17 lines
328 B
Go
|
|
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()
|
||
|
|
}
|