cash_excel.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <th>状态</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. {foreach $list as $vo}
  31. <tr>
  32. <td>{$vo['id']}</td>
  33. <td>{$vo['nickname']}</td>
  34. <td>{$vo.info.name}</td>
  35. <td>{$vo.phone_uid}</td>
  36. <td>{$vo.info.bankname}</td>
  37. <td>{$vo.info.bankid}</td>
  38. <td>{$vo.info.idcard}</td>
  39. <td>{$vo.money/100|money}</td>
  40. <td>{$vo.money*(1-$config.tax/100)/100|money}</td>
  41. <td>{$vo.money*($config.tax/100)/100|money}</td>
  42. <td>{$vo->update_time|date='Y-m-d H:i'}</td>
  43. <td>{if $vo.state == 1}已通过{elseif $vo.state == -1}不通过{else}待审{/if}</td>
  44. </tr>
  45. {/foreach}
  46. </tbody>
  47. </table>
  48. </div>
  49. </body>
  50. </html>