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.
104 lines
3.4 KiB
104 lines
3.4 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"}
|
|
|
|
<form method="POST" action="" name="listForm" onsubmit="return confirm_bath()">
|
|
|
|
<!-- start users list -->
|
|
<div class="list-div" id="listDiv">
|
|
{/if}
|
|
<!--用户列表部分-->
|
|
<table cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<th>
|
|
<input onclick='listTable.selectAll(this, "checkboxes")' type="checkbox">
|
|
<a href="javascript:listTable.sort('ra_id'); ">{$lang.record_id}</a>{$sort_ra_id}
|
|
</th>
|
|
<th>区域名称</th>
|
|
<th>区域地区</th>
|
|
<th>排序</th>
|
|
<th>添加时间</th>
|
|
<th>{$lang.handler}</th>
|
|
<tr>
|
|
{foreach from=$region_list item=region}
|
|
<tr>
|
|
<td><input type="checkbox" name="checkboxes[]" value="{$region.ra_id}"/>{$region.ra_id}</td>
|
|
<td align="center" class="first-cell"><span onclick="listTable.edit(this, 'edit_ra_name', {$region.ra_id})">{$region.ra_name}</span></td>
|
|
<td align="center">{$region.area_list}</td>
|
|
<td align="center"><span onclick="listTable.edit(this, 'edit_ra_sort', {$region.ra_id})">{$region.ra_sort}</span></td>
|
|
<td align="center">{$region.add_time}</td>
|
|
<td align="center">
|
|
<a href="region_area.php?act=edit&id={$region.ra_id}" title="{$lang.edit}"><img src="images/icon_edit.gif" border="0" height="21" width="21" /></a>
|
|
<a href="javascript:confirm_redirect('{$lang.remove_confirm}', 'region_area.php?act=remove&id={$region.ra_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="10">{$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="8">
|
|
{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}
|