index.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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-title">
  8. <a url="{:url('add',[],'')}/id/0/pid/0" class="btn btn-sm btn-primary" href="javascript:;" data-title="新增科目" onclick="layer_open(this,2)">新增科目</a>
  9. </div>
  10. <div class="ibox-content">
  11. <table class="table table-striped">
  12. <thead>
  13. <tr>
  14. <th>编号</th>
  15. <th>名称</th>
  16. <th>类型</th>
  17. <th>价格</th>
  18. <th>是否按周期</th>
  19. <th>是否按面积</th>
  20. <th>排序</th>
  21. <th>状态</th>
  22. <th>操作</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. {if condition="$tree"}
  27. {:widget('house_fee/tree',['data'=>$tree,'depth'=>0])}
  28. {/if}
  29. </tbody>
  30. </table>
  31. </div>
  32. </div>
  33. {/block}
  34. {block name="script"}
  35. {/block}