show_num.html 754 B

1234567891011121314151617181920212223242526
  1. <div class="layui-fluid" style="background:white;">
  2. <div class="layui-row layui-col-space15">
  3. <div class="layui-col-md8 layui-col-md-offset2">
  4. <table class="layui-table">
  5. <colgroup>
  6. <col>
  7. <col>
  8. </colgroup>
  9. <thead>
  10. <tr>
  11. <th>选项名</th>
  12. <th>票数</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {volist name="info" id="v"}
  17. <tr>
  18. <td>{$key}</td>
  19. <td>{$v}</td>
  20. </tr>
  21. {/volist}
  22. </tbody>
  23. </table>
  24. </div>
  25. </div>
  26. </div>