Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

detail.html 579B

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}