detail.html 899 B

12345678910111213141516171819202122232425262728293031
  1. <!--
  2. * @Descripttion:
  3. * @version:
  4. * @Author: xiaoyu5062
  5. * @QQ/Email: xiaoyu5062@qq.com
  6. * @Date: 2020-07-25 10:01:48
  7. * @LastEditors: xiaoyu5062
  8. * @LastEditTime: 2025-02-19 16:25:08
  9. -->
  10. <table class="table table-striped">
  11. <thead>
  12. <tr>
  13. <th>{:__('Title')}</th>
  14. <th>{:__('Content')}</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. {volist name="row" id="vo" }
  19. <tr>
  20. <td>{:__($key)}</td>
  21. <td>{if $key=='createtime'}{$vo|datetime|htmlentities}{else/}{$vo|htmlentities}{/if}</td>
  22. </tr>
  23. {/volist}
  24. </tbody>
  25. </table>
  26. <div class="hide layer-footer">
  27. <label class="control-label col-xs-12 col-sm-2"></label>
  28. <div class="col-xs-12 col-sm-8">
  29. <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
  30. </div>
  31. </div>