breadcrumbListTPL.html 533 B

1234567891011121314
  1. <span class="layui-breadcrumb">
  2. <a href="###"></a>
  3. {{# layui.each(d.items,function(index,item){}}
  4. {{# if(d.currId==item.id){}}
  5. <a><cite>{{=item.name}}</cite></a>
  6. {{# } else { }}
  7. {{# if(item.id==0){}}
  8. <a href="###" onclick="enterFolder(this)" data_id="0">{{=item.name}}</a>
  9. {{# } else { }}
  10. <a href="###" onclick="enterFolder(this)" data_id="{{=item.id}}">{{=item.name}}</a>
  11. {{# } }}
  12. {{# } }}
  13. {{# }); }}
  14. </span>