index.html 776 B

12345678910111213141516171819202122232425262728293031323334
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <div class="ibox">
  4. <div class="ibox-title">
  5. <h5>项目管理</h5>
  6. </div>
  7. <div class="ibox-content">
  8. <table class="table table-striped">
  9. <thead>
  10. <tr>
  11. <th>编号</th>
  12. <th>机构名</th>
  13. <th>备注</th>
  14. <th>状态</th>
  15. <th>排序</th>
  16. <th>类型</th>
  17. <th>操作</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. {if condition="$tree"}
  22. {:widget_view('org/tree',['data'=>$tree,'depth'=>0])}
  23. {/if}
  24. </tbody>
  25. </table>
  26. </div>
  27. </div>
  28. {/block}
  29. {block name="script"}
  30. <script>
  31. </script>
  32. {/block}