## zhxTabFrame 数据格式
模拟了一段读取进框架的数据对象
```json
{
"data" : [
{
"id" : "12345",
"name" : "模块",
"icon" : "iconClassName",
"template" : "tpl/template.html",
"children" : [ //二级菜单
{
"id" : "01001",
"moduleName" : "子模块",
"icon" : "childClassIcon",
"template" : "tpl/child-template.html"
}
]
}
],
"success" : true
}
```