change_org.html 580 B

123456789101112131415161718192021222324252627
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <div class="ibox">
  4. <div class="ibox-content">
  5. <table class="table table-striped">
  6. <thead>
  7. <tr>
  8. <th>编号</th>
  9. <th>机构名</th>
  10. <th>操作</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. {if condition="$tree"}
  15. {:widget_view('index/tree',['data'=>$tree,'depth'=>0])}
  16. {/if}
  17. </tbody>
  18. </table>
  19. </div>
  20. </div>
  21. {/block}
  22. {block name="script"}
  23. <script>
  24. </script>
  25. {/block}