bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
{if $full_page}
<!-- $Id: users_list.htm 17053 2015-02-10 06:50:26Z  $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
 
<form method="POST" action="" name="listForm">
 
<!-- start users list -->
<div class="list-div1" id="listDiv">
{/if}
<!--用户列表部分-->
<table cellpadding="3" cellspacing="1">
  <tr>
    <th>分销商名称</th>
    <th>总分成金额</th>
  <tr>
  {foreach from=$distrib_sort_list item=list key=key}
  <tr>
    <td align="center">{$list.user_name|escape}</td>
    <td align="center">{$list.total_money}</td>
  </tr>
  {foreachelse}
  <tr><td class="no-records" colspan="12">{$lang.no_records}</td></tr>
  {/foreach}
  <tr>
      <td colspan="2" align="right">{include file="page.htm"}</td>
  </tr>
</table>
 
{if $full_page}
</div>
<!-- end users list -->
</form>
<script type="text/javascript" language="JavaScript">
<!--
listTable.recordCount = {$record_count};
listTable.pageCount = {$page_count};
 
{foreach from=$filter item=item key=key}
listTable.filter.{$key} = '{$item}';
{/foreach}
 
{literal}
onload = function()
{
    document.forms['searchForm'].elements['keyword'].focus();
    // 开始检查订单
    startCheckOrder();
}
//-->
</script>
{/literal}
{include file="pagefooter.htm"}
{/if}