tree.html 772 B

123456789101112131415161718192021
  1. {volist name="data" id="v"}
  2. <tr>
  3. <td style="width: 60px;">{$v.id}</td>
  4. <td style="text-indent:{$depth * 2}em;">
  5. {if condition="isset($v['children']) && !empty($v['children'])"}
  6. <i class="glyphicon glyphicon-folder-open"></i>
  7. {else /}
  8. <i class="glyphicon glyphicon-list-alt"></i>
  9. {/if}
  10. {$v.name}
  11. </td>
  12. <td style="width: 100px;">
  13. {if condition="$v['type'] == 2"}
  14. <a href="{:url('changeOrg',['id'=>$v['id']])}" class="ajax-get" data-layer="1"><span class="label label-primary" title="切换">切换</span></a>
  15. {/if}
  16. </td>
  17. </tr>
  18. {if condition="isset($v['children']) && !empty($v['children'])"}
  19. {:widget_view('index/tree',['data'=>$v['children'],'depth'=>$depth + 1])}
  20. {/if}
  21. {/volist}