You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
6.2 KiB

{if $full_page}
<!-- $Id: users_list.htm 17053 2010-03-15 06:50:26Z sxc_shop $ -->
{include file="pageheader.htm"}
{insert_scripts files="../js/utils.js,listtable.js"}
<div class="form-div">
<form action="javascript:searchUser()" name="searchForm">
<img src="images/icon_search.gif" width="26" height="22" border="0" alt="SEARCH" />
&nbsp;{$lang.label_rank_name} <select name="user_rank" id="user_rank"><option value="0">{$lang.all_option}</option>{html_options options=$user_ranks }</select>
&nbsp;{$lang.label_pay_points_gt}&nbsp;<input type="text" name="pay_points_gt" id="pay_points_gt" size="8" />&nbsp;{$lang.label_pay_points_lt}&nbsp;<input type="text" name="pay_points_lt" id="pay_points_lt" size="10" />
&nbsp;{$lang.label_user_name} &nbsp;<input type="text" name="keyword" id="keyword" /> <input type="submit" class="button" value="{$lang.button_search}" /><input type="button" class="button" value="導出客戶" onclick="user_to_excel()" />
</form>
</div>
<script>
function user_to_excel()
{
var user_rank = document.getElementById('user_rank').value;
var pay_points_gt = document.getElementById('pay_points_gt').value;
var pay_points_lt = document.getElementById('pay_points_lt').value;
var keyword = document.getElementById('keyword').value;
window.location.href='../plugins/user_to_excel/index.php?user_rank='+user_rank+'&pay_points_gt='+pay_points_gt+'&pay_points_lt='+pay_points_lt+'&keyword='+keyword;
window.event.returnValue = false;
}
</script>
<form method="POST" action="" name="listForm" onsubmit="return confirm_bath()">
<!-- start users list -->
<div class="list-div" id="listDiv">
{/if}
<!--用户列表部分-->
<table class="table table-bordered"> <tr>
<th>
<input onclick='listTable.selectAll(this, "checkboxes")' type="checkbox">
<a href="javascript:listTable.sort('user_id'); ">{$lang.record_id}</a>{$sort_user_id}
</th>
<th>客戶編號</th>
<th><a href="javascript:listTable.sort('mobile_phone'); ">手機號</a>{$sort_mobile_phone}</th>
<th><a href="javascript:listTable.sort('user_name'); ">{$lang.username}</a>{$sort_user_name}</th>
<th><a href="javascript:listTable.sort('email'); ">{$lang.email}</a>{$sort_email}</th>
<th><a href="javascript:listTable.sort('is_validated'); ">{$lang.is_validated}</a>{$sort_is_validate}</th>
<th>{$lang.user_money}</th>
<th>{$lang.frozen_money}</th>
<th>推薦人</th>
<!-- <th>{$lang.rank_points}</th> -->
<!-- <th>{$lang.pay_points}</th> -->
<th><a href="javascript:listTable.sort('reg_time'); ">{$lang.reg_date}</a>{$sort_reg_time}</th>
<th>{$lang.handler}</th>
<tr>
{foreach from=$user_list item=user}
<tr>
<td><input type="checkbox" name="checkboxes[]" value="{$user.user_id}" notice="{if $user.user_money ne 0}1{else}0{/if}"/>{$user.user_id}</td>
<td class="first-cell">{$user.sso_user_id}</td>
<td class="first-cell"><a href="sms.php?act=display_send_ui&mobile={$user.mobile_phone} ">{$user.mobile_phone|escape}</a></td>
<td class="first-cell">{$user.real_name|escape}</td>
<td><span onclick="listTable.edit(this, 'edit_email', {$user.user_id})">{$user.email}</span></td>
<td align="center">{if $user.is_validated} <img src="images/yes.gif"> {else} <img src="images/no.gif"> {/if}</td>
<td>{$user.user_money}</td>
<td>{$user.frozen_money}</td>
<td>{$user.parent}</td>
<!-- <td>{$user.rank_points}</td> -->
<!-- <td>{$user.pay_points}</td> -->
<td align="center">{$user.reg_time}</td>
<td align="center">
<a href="users.php?act=edit&id={$user.user_id}" title="{$lang.edit}"><img src="images/icon_edit.gif" border="0" height="21" width="21" /></a>
<a href="users.php?act=address_list&id={$user.user_id}" title="{$lang.address_list}"><img src="images/book_open.gif" border="0" height="21" width="21" /></a>
<a href="order.html#/list?user_id={$user.user_id}" title="{$lang.view_order}"><img src="images/icon_view.gif" border="0" height="21" width="21" /></a>
<a href="account_log.php?act=list&user_id={$user.user_id}" title="{$lang.view_deposit}"><img src="images/icon_account.gif" border="0" height="21" width="21" /></a>
<a href="javascript:confirm_redirect('{if $user.user_money ne 0}{$lang.still_accounts}{/if}{$lang.remove_confirm}', 'users.php?act=remove&id={$user.user_id}')" title="{$lang.remove}"><img src="images/icon_drop.gif" border="0" height="21" width="21" /></a>
</td>
</tr>
{foreachelse}
<tr><td class="no-records" colspan="11">{$lang.no_records}</td></tr>
{/foreach}
<tr>
<td colspan="2">
<input type="hidden" name="act" value="batch_remove" />
<input type="submit" id="btnSubmit" value="{$lang.button_remove}" disabled="true" class="button" /></td>
<td align="right" nowrap="true" colspan="11">
{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();
}
/**
* 搜索用户
*/
function searchUser()
{
listTable.filter['keywords'] = Utils.trim(document.forms['searchForm'].elements['keyword'].value);
listTable.filter['rank'] = document.forms['searchForm'].elements['user_rank'].value;
listTable.filter['pay_points_gt'] = Utils.trim(document.forms['searchForm'].elements['pay_points_gt'].value);
listTable.filter['pay_points_lt'] = Utils.trim(document.forms['searchForm'].elements['pay_points_lt'].value);
listTable.filter['page'] = 1;
listTable.loadList();
}
function confirm_bath()
{
userItems = document.getElementsByName('checkboxes[]');
cfm = '{$lang.list_remove_confirm}';
for (i=0; userItems[i]; i++)
{
if (userItems[i].checked && userItems[i].notice == 1)
{
cfm = '{$lang.list_still_accounts}' + '{$lang.list_remove_confirm}';
break;
}
}
return confirm(cfm);
}
//-->
</script>
{/literal}
{include file="pagefooter.htm"}
{/if}