1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{extend name="public:base" /}
{block name="body"}
<div class="layui-row">
<div class="layui-col-md12">
<div class="layui-card">
<form class="layui-form">
<!--结算-->
<div class="layui-form-box">
<div class="layui-form-body">
<div class="layui-row">
<div style="padding:0 0 0 30px;margin-bottom: 20px;">
<table class="layui-table layui-form">
<thead>
<tr>
<th>发票ID</th>
<th>结算ID</th>
<th>发票号码</th>
<th>发票类型</th>
<th>发票金额</th>
<th>发票税率</th>
<th>发票税额</th>
<th>附件</th>
</thead>
<tbody>
{volist name="data" id="item"}
<tr>
<td>{$item.receipt_id}</td>
<td>{$item.settle_id}</td>
<td>{$item.numb|default="无"}</td>
<td>{$item.types.title}</td>
<td>{$item.amount}</td>
<td>{$item.tax_rate}</td>
<td>{$item.tax_amount}</td>
<td><a target="_blank" class="layui-btn layui-btn-sm" href="{$item.file.src}">查看</a></td>
</tr>
{/volist}
</tbody>
</table>
</div>
</div>
</div>
</div>
<!--结算结束-->
</form>
</div>
</div>
</div>
{/block}