1234567891011121314151617181920212223242526272829303132333435363738 |
- <div class="tipbox tipbox-message">
- <span class="fn-f14 fn-fb red">活动名称</span><span class="red fn-fb">{$info.title}</span>
- </div>
- <div class="titlebar fn-clear">
- <div class="fn-left"><i class="iconfont icon-my_icon"></i><span class="fn-fb">核心数据</span></div>
- </div>
- <table class="table">
- <thead>
- <tr>
- <th class="w80 fn-tac">用户</th>
- <th class="w160"></th>
- <th class="w300">商家名称</th>
- <th>商家地址</th>
- <th class="w100">商家电话</th>
- <th class="w140">核销时间</th>
- </tr>
- </thead>
- <tbody>
- {foreach $lists as $vo}
- <tr>
- <td class="fn-tac"><img src="{$vo.user.face}" class="w40" /></td>
- <td>{$vo.user.nickname}</td>
- <td>{$vo.store.name}</td>
- <td>{$vo.store.address}</td>
- <td>{$vo.store.telphone}</td>
- <td>{$vo.times|date='Y-m-d H:i'}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {$lists|raw}
- <script type="text/javascript">
- Do('base', 'layer','tip',function () {
- $('.isDel').isDel();
- $(".trigger").powerFloat({targetMode:"ajax"});
- })
- </script>
|