hotime/code/config.go

24 lines
649 B
Go

package code
import (
. "../common"
)
var Config = Map{
"name": "HoTimeDashBoard",
"id": "2f92h3herh23rh2y8",
"label": "HoTime管理平台",
"menu": []Map{
{"label": "平台首页", "name": "HelloWorld", "icon": "el-icon-s-home"},
{"label": "测试表格", "table": "table", "icon": "el-icon-suitcase"},
{"label": "系统管理", "name": "setting", "icon": "el-icon-setting",
"menu": []Map{
{"label": "用户管理", "table": "user"},
{"label": "组织管理", "table": "organization"},
{"label": "角色管理", "table": "role"},
{"label": "系统设置", "table": "system", "default": "edit"},
},
},
},
}