2021-06-07 17:22:07 +08:00
|
|
|
package form
|
|
|
|
|
|
|
|
|
|
type ResourceForm struct {
|
2021-07-28 18:03:19 +08:00
|
|
|
Pid int
|
|
|
|
|
Id int
|
|
|
|
|
Code string `binding:"required"`
|
|
|
|
|
Name string `binding:"required"`
|
|
|
|
|
Type int `binding:"required,oneof=1 2"`
|
|
|
|
|
Weight int
|
|
|
|
|
Meta map[string]interface{}
|
2021-06-07 17:22:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MenuResourceMeta struct {
|
2021-07-28 18:03:19 +08:00
|
|
|
RouteName string `binding:"required"`
|
|
|
|
|
Component string `binding:"required"`
|
2021-06-07 17:22:07 +08:00
|
|
|
Redirect string
|
2021-07-28 18:03:19 +08:00
|
|
|
Path string `binding:"required"`
|
2021-06-07 17:22:07 +08:00
|
|
|
IsKeepAlive bool //
|
|
|
|
|
IsHide bool // 是否在菜单栏显示,默认显示
|
|
|
|
|
IsAffix bool // tag标签是否不可删除
|
|
|
|
|
IsIframe bool
|
|
|
|
|
Link string
|
|
|
|
|
}
|