123456789101112131415161718192021222324252627 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="ibox">
- <div class="ibox-content">
- <table class="table table-striped">
- <thead>
- <tr>
- <th>编号</th>
- <th>机构名</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {if condition="$tree"}
- {:widget_view('index/tree',['data'=>$tree,'depth'=>0])}
- {/if}
- </tbody>
- </table>
- </div>
- </div>
- {/block}
- {block name="script"}
- <script>
- </script>
- {/block}
|