Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. {extend name="index_layout"/}
  2. {block name="main"}
  3. <table class="layui-table">
  4. <colgroup>
  5. <col width="150">
  6. <col width="150">
  7. <col>
  8. </colgroup>
  9. <thead>
  10. <tr>
  11. <th>标题</th>
  12. <th>内容</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {volist name="row" id="vo"}
  17. <tr>
  18. <td>{$key}</td>
  19. <td>{$vo}</td>
  20. </tr>
  21. {/volist}
  22. </tbody>
  23. </table>
  24. <div class="layui-hide layer-footer">
  25. <button type="reset" class="layui-btn btn-close" onclick="layer.closeAll();">关闭</button>
  26. </div>
  27. {/block}