tree.html 821 B

1234567891011121314151617181920212223
  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: 300px;">{$v.content}</td>
  13. <td style="width: 100px;">
  14. {if condition="$v['type'] == 2"}
  15. <a href="{:url('changeOrg',['id'=>$v['id']])}" class="ajax-get" data-layer="1"><span class="label label-primary" title="切换">切换</span></a>
  16. {/if}
  17. </td>
  18. </tr>
  19. {if condition="isset($v['children']) && !empty($v['children'])"}
  20. {:widget_view('index/tree',['data'=>$v['children'],'depth'=>$depth + 1])}
  21. {/if}
  22. {/volist}