123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <html xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:x="urn:schemas-microsoft-com:office:excel"
- xmlns="http://www.w3.org/TR/REC-html40">
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
- <style id="Classeur1_16681_Styles"></style>
- </head>
- <body>
- <div id="Classeur1_16681" align=center x:publishsource="Excel">
- <table x:str border=1 cellpadding=0 cellspacing=0 width="100%" style="border-collapse: collapse;border 1px #000 solid">
- <thead>
- <tr>
- <th>昵称</th>
- <th>姓名</th>
- <th>手机号</th>
- <th>开户行</th>
- <th>银行卡号</th>
- <th>身份证号</th>
- <th>¥申请金额</th>
- <th>¥应到帐户:</th>
- <th>¥手续费:</th>
- <th>更新时间</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- {foreach $list as $vo}
- <tr>
- <td>{$vo.user.nickname}</td>
- <td>{$vo.info.name}</td>
- <td>{$vo.user.phone_uid}</td>
- <td>{$vo.info.bankname}</td>
- <td>{$vo.info.bankid}</td>
- <td>{$vo.info.idcard}</td>
- <td>{$vo.money|money}</td>
- <td>{$vo.money*(1-$config.tax/100)|money}</td>
- <td>{$vo.money*($config.tax/100)|money}</td>
- <td>{$vo->update_time|date='Y-m-d H:i'}</td>
- <td>{if $vo.state == 1}已通过{elseif $vo.state == -1}不通过{else}待审{/if}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- </div>
- </body>
- </html>
|