1234567891011121314151617181920212223242526 |
- <div class="layui-fluid" style="background:white;">
- <div class="layui-row layui-col-space15">
- <div class="layui-col-md8 layui-col-md-offset2">
- <table class="layui-table">
- <colgroup>
- <col>
- <col>
- </colgroup>
- <thead>
- <tr>
- <th>选项名</th>
- <th>票数</th>
- </tr>
- </thead>
- <tbody>
- {volist name="info" id="v"}
- <tr>
- <td>{$key}</td>
- <td>{$v}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- </div>
- </div>
|