ECSHOP后台会员列表页增加按手机查询会员功能

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

1、
首先修改程序文件admin/users.php

找到
$filter['pay_points_lt'] = empty($_REQUEST['pay_points_lt']) ? 0 : intval($_REQUEST['pay_points_lt']);
wyl8574.com
在它下面增加一行代码
$filter['mobile_phone'] = empty($_REQUEST['mobile_phone']) ? 0 : trim($_REQUEST['mobile_phone']);


继续找到
if ($filter['pay_points_lt'])
{
$ex_where .=" AND pay_points < '$filter[pay_points_lt]' ";
}

在它下面增加下列代码
if ($filter['mobile_phone'])
{
$ex_where .=" AND mobile_phone like '%$filter[mobile_phone]%' ";
}


2、修改模板文件 admin/templates/users_list.htm

找到
{$lang.label_user_name}<input type="text" name="keyword" /> yule725.com

在它后面增加代码
手机号码: <input type="text" name="mobile_phone" />

继续找到
listTable.filter['keywords'] = Utils.trim(document.forms['searchForm'].elements['keyword'].value);

在它下面增加一行代码 listTable.filter['mobile_phone'] = Utils.trim(document.forms['searchForm'].elements['mobile_phone'].value);


yule3721.com