-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoiceapply.tpl
74 lines (73 loc) · 1.81 KB
/
invoiceapply.tpl
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{include file="includes/tablestyle"}
<div class="card">
<div class="card-body">
<div class="table-container">
<div class="table-header">
<div class="table-filter">
<div class="row">
<div class="col">
</div>
</div>
</div>
<div class="table-search">
<div class="row justify-content-end">
<div class="col-sm-6">
<div class="search-box">
<div class="position-relative">
<input type="text" class="form-control" placeholder="Search...">
<i class="bx bx-search-alt search-icon"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table tablelist">
<colgroup>
<col>
<col width="15%">
<col>
<col>
<col>
<col width="10%">
</colgroup>
<thead class="thead-light">
<tr>
<th><input type="checkbox" /></th>
<th>{$Lang.bill_no}</th>
<th>{$Lang.amount_money}</th>
<th>{$Lang.type}</th>
<th>{$Lang.payment_time}</th>
<th>{$Lang.operating}</th>
</tr>
</thead>
<tbody>
{if $Invoiceapply}
{foreach $Invoiceapply as $list}
<tr>
<td><input type="checkbox" /></td>
<td><span class="badge badge-light"># {$list.id}</span></td>
<td>{$list.subtotal}</td>
<td>{$list.type_zh}</td>
<td>{if $list.paid_time}{$list.paid_time|date="Y-m-d H:i"}{else}-{/if}</td>
<td>
<a href="#" class="text-primary mr-2">{$Lang.invoice}</a>
</td>
</tr>
{/foreach}
{else}
<tr>
<td colspan="12">
<div class="no-data">{$Lang.nothing}</div>
</td>
</tr>
{/if}
</tbody>
</table>
</div>
<!-- 表单底部调用开始 -->
{include file="includes/tablefooter"}
</div>
</div>
</div>