12345678910111213141516171819202122232425262728293031323334 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="ibox">
- <div class="ibox-title">
- <h5>项目管理</h5>
- </div>
- <div class="ibox-content">
- <table class="table table-striped">
- <thead>
- <tr>
- <th>编号</th>
- <th>机构名</th>
- <th>备注</th>
- <th>状态</th>
- <th>排序</th>
- <th>类型</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {if condition="$tree"}
- {:widget_view('org/tree',['data'=>$tree,'depth'=>0])}
- {/if}
- </tbody>
- </table>
- </div>
- </div>
- {/block}
- {block name="script"}
- <script>
- </script>
- {/block}
|