You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
654 B
27 lines
654 B
package request
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
|
)
|
|
|
|
// Add menu authority info structure
|
|
type AddMenuAuthorityInfo struct {
|
|
Menus []system.SysBaseMenu `json:"menus"`
|
|
AuthorityId string `json:"authorityId"` // 角色ID
|
|
}
|
|
|
|
func DefaultMenu() []system.SysBaseMenu {
|
|
return []system.SysBaseMenu{{
|
|
GVA_MODEL: global.GVA_MODEL{ID: 1},
|
|
ParentId: "0",
|
|
Path: "dashboard",
|
|
Name: "dashboard",
|
|
Component: "view/dashboard/index.vue",
|
|
Sort: 1,
|
|
Meta: system.Meta{
|
|
Title: "仪表盘",
|
|
Icon: "setting",
|
|
},
|
|
}}
|
|
}
|