change_org.html 612 B

12345678910111213141516171819202122232425262728
  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. <th>操作</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {if condition="$tree"}
  16. {:widget_view('index/tree',['data'=>$tree,'depth'=>0])}
  17. {/if}
  18. </tbody>
  19. </table>
  20. </div>
  21. </div>
  22. {/block}
  23. {block name="script"}
  24. <script>
  25. </script>
  26. {/block}