verification.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="tipbox tipbox-message">
  2. <span class="fn-f14 fn-fb red">活动名称</span><span class="red fn-fb">{$info.title}</span>
  3. </div>
  4. <div class="titlebar fn-clear">
  5. <div class="fn-left"><i class="iconfont icon-my_icon"></i><span class="fn-fb">核心数据</span></div>
  6. </div>
  7. <table class="table">
  8. <thead>
  9. <tr>
  10. <th class="w80 fn-tac">用户</th>
  11. <th class="w160"></th>
  12. <th class="w300">商家名称</th>
  13. <th>商家地址</th>
  14. <th class="w100">商家电话</th>
  15. <th class="w140">核销时间</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {foreach $lists as $vo}
  20. <tr>
  21. <td class="fn-tac"><img src="{$vo.user.face}" class="w40" /></td>
  22. <td>{$vo.user.nickname}</td>
  23. <td>{$vo.store.name}</td>
  24. <td>{$vo.store.address}</td>
  25. <td>{$vo.store.telphone}</td>
  26. <td>{$vo.times|date='Y-m-d H:i'}</td>
  27. </tr>
  28. {/foreach}
  29. </tbody>
  30. </table>
  31. {$lists|raw}
  32. <script type="text/javascript">
  33. Do('base', 'layer','tip',function () {
  34. $('.isDel').isDel();
  35. $(".trigger").powerFloat({targetMode:"ajax"});
  36. })
  37. </script>