salesman_money.html
1.1 KB
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
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('Salesman/salesman_list')}">业务员列表</a></li>
<li class="active"><a href="#">余额明细列表</a></li>
</ul>
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<th>收入时间</th>
<th>收入类别</th>
<th>订单号</th>
<th>书籍</th>
<th>金额</th>
</tr>
</thead>
<tbody>
<volist name="data" id="vo">
<tr>
<td>{$vo.create_time|date="Y-m-d H:i:s",###}</td>
<td>
<if condition="$vo.type eq 1">
平台收入
<else/>
团购收入
</if>
</td>
<td>{$vo.indent.order_number}</td>
<td>
{$vo.indent_good}
</td>
<td>{$vo.money}</td>
</tr>
</volist>
</tbody>
</table>
</div>
</body>
</html>