sifangpay/resources/views/email/draw_money.blade.php

76 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<style type="text/css">
body {
margin: 0 auto;
padding: 0;
font-family: Microsoft Yahei, Tahoma, Arial;
color: #333333;
background-color: #fff;
font-size: 12px;
}
a {
color: #00a2ca;
line-height: 22px;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #00a2ca;
}
td {
font-family: 'Microsoft YaHei';
}
</style>
<table width="" border="1" align="left" cellpadding="10" cellspacing="0" style=" padding:0 20px;font-size:14px;color:#333333;border-collapse:collapse;border-color: #ededed;margin:20px">
<caption>
<h3 style="font-size: 16px color:#333 text-center:center">商户提现申请清单</h3>
</caption>
<tbody >
<tr >
<td>
ID号
</td>
<td >
提款商户
</td>
<td >提现金额</td>
<td >到账金额</td>
<td >手续费金额</td>
<td >申请时间</td>
</tr>
<tr style="; padding-right:20px;">
<td >
{{ $data['id'] }}
</td>
<td >
{{ $data['name'] }}
</td>
<td ><b style=""> {{ $data['draw_money'] }}</b></td>
<td ><b style="color:#f00"> {{ $data['money'] }}</b></td>
<td ><b style="color:#0cb46a"> {{ $data['fee_money'] }}</b></td>
<td > {{ $data['created_at'] }}</td>
</tr>
<tr>
<td colspan="6">
<p>收款人:{{ $data['bank_realname'] }}</p>
<p>开户行:{{ $data['bank_source'] }}</p>
</td>
</tr>
<tr>
<td colspan="6">
<p>类型:{{ $data['bank_name'] }}</p>
<p>
卡号:{{ $data['bank_account'] }}
</p>
</td>
</tr>
</tbody>
</table>