//处理顶部一级菜单
var onelevel = layui.onelevel;
if (onelevel.hasElem()) {
onelevel.set({
remote: {
url: '/datas/onelevel1.json' //远程地址
},
onClicked: function(id) {
switch (id) {
case 1:
navbar.set({
remote:
{
url:
'/datas/navbar1.json'
}
}).render(function(data) {
tab.tabAdd(data);
});
break;
case 2:
navbar.set({
remote:
{
url:
'/datas/navbar2.json'
}
}).render(function(data) {
tab.tabAdd(data);
});
break;
default:
navbar.set({
data:
[{
id:
"1",
title: "基本元素",
icon: "fa-cubes",
spread: true,
children: [{
id: "7",
title: "表格",
icon: "",
url: "test.html"
},
{
id: "8",
title: "表单",
icon: "",
url: "form.html"
}]
},
{
id: "5",
title: "这是一级导航",
icon: "fa-stop-circle",
url: "https://www.baidu.com",
spread: false
}]
}).render(function(data) {
tab.tabAdd(data);
});
break;
}
}
}).render();
}