控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

public_view.html 445B

12345678910111213141516171819202122232425
  1. {extend name="admin@index_layout"/}
  2. {block name="main"}
  3. <table class="layui-table">
  4. <colgroup>
  5. <col width="40%">
  6. <col width="60%">
  7. <col>
  8. </colgroup>
  9. <thead>
  10. <tr>
  11. <th>名称</th>
  12. <th>内容</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {volist name="fieldList" id="vo"}
  17. <tr>
  18. <td>{$vo.title}</td>
  19. <td>{$vo.value|raw}</td>
  20. </tr>
  21. {/volist}
  22. </tbody>
  23. </table>
  24. {/block}
  25. {block name="layui"}{/block}