yihexiao.html 519 字节
<include file="public@header" />
</head>
<body>
<table class="table table-bordered" style="margin:10px 10px;">
  <caption>已核销</caption>
  <thead>
    <tr>
      <th>姓名</th>
      <th>优惠券</th>
      <th>核销时间</th>
      <th>核销码</th>
    </tr>
  </thead>
  <tbody>
  <volist name="data" id="vo" >
    <tr>
      <td>{$vo.name}</td>
      <td>{$vo.title}</td>
      <td>{$vo.time|date="Y-m-d H:i:s",###}</td>
      <td>{$vo.code}</td>
    </tr>
  </volist>

  </tbody>
</table>
</body>
</html>