62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"module": "worker",
|
|
"name": "Workers",
|
|
"icon" : "icon-worker",
|
|
"validations" : true,
|
|
"dependencies": ["account"],
|
|
"menus": {
|
|
"main": [
|
|
{"state": "worker.index", "icon": "icon-worker"},
|
|
{"state": "worker.department", "icon": "work"}
|
|
],
|
|
"department": [
|
|
{"state": "worker.department.card.basicData", "icon": "settings"}
|
|
]
|
|
},
|
|
"keybindings": [
|
|
{
|
|
"key": "w",
|
|
"state": "worker.index"
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"url": "/worker",
|
|
"state": "worker",
|
|
"abstract": true,
|
|
"component": "vn-worker",
|
|
"description": "Workers"
|
|
},
|
|
{
|
|
"url": "/index?q",
|
|
"state": "worker.index",
|
|
"component": "vn-worker-index",
|
|
"description": "Workers"
|
|
},
|
|
{
|
|
"url" : "/summary",
|
|
"state": "worker.card.summary",
|
|
"component": "vn-worker-summary",
|
|
"description": "Summary",
|
|
"params": {
|
|
"worker": "$ctrl.worker"
|
|
}
|
|
},
|
|
{
|
|
"url": "/department?q",
|
|
"state": "worker.department",
|
|
"component": "vn-worker-department",
|
|
"description":"Departments"
|
|
},
|
|
{
|
|
"url" : "/summary",
|
|
"state": "worker.department.card.summary",
|
|
"component": "vn-worker-department-summary",
|
|
"description": "Summary",
|
|
"params": {
|
|
"department": "$ctrl.department"
|
|
}
|
|
}
|
|
]
|
|
}
|