cash_excel.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <html xmlns:o="urn:schemas-microsoft-com:office:office"
  2. xmlns:x="urn:schemas-microsoft-com:office:excel"
  3. xmlns="http://www.w3.org/TR/REC-html40">
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
  8. <style id="Classeur1_16681_Styles"></style>
  9. </head>
  10. <body>
  11. <div id="Classeur1_16681" align=center x:publishsource="Excel">
  12. <table x:str border=1 cellpadding=0 cellspacing=0 width="100%" style="border-collapse: collapse;border 1px #000 solid">
  13. <thead>
  14. <tr>
  15. <th>昵称</th>
  16. <th>姓名</th>
  17. <th>手机号</th>
  18. <th>开户行</th>
  19. <th>银行卡号</th>
  20. <th>身份证号</th>
  21. <th>¥申请金额</th>
  22. <th>¥应到帐户:</th>
  23. <th>¥手续费:</th>
  24. <th>更新时间</th>
  25. <th>状态</th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. {foreach $list as $vo}
  30. <tr>
  31. <td>{$vo.user.nickname}</td>
  32. <td>{$vo.info.name}</td>
  33. <td>{$vo.user.phone_uid}</td>
  34. <td>{$vo.info.bankname}</td>
  35. <td>{$vo.info.bankid}</td>
  36. <td>{$vo.info.idcard}</td>
  37. <td>{$vo.money|money}</td>
  38. <td>{$vo.money*(1-$config.tax/100)|money}</td>
  39. <td>{$vo.money*($config.tax/100)|money}</td>
  40. <td>{$vo->update_time|date='Y-m-d H:i'}</td>
  41. <td>{if $vo.state == 1}已通过{elseif $vo.state == -1}不通过{else}待审{/if}</td>
  42. </tr>
  43. {/foreach}
  44. </tbody>
  45. </table>
  46. </div>
  47. </body>
  48. </html>