您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

ecshop后台会员列表页增加按手机查询会员的实现方法

尤帅齐2023-12-11 17:38:12ecshop商城教程已有人查阅

导读1、首先修改程序文件  admin/users.php;2、修改模板文件 admin/templates/users_list.htm

1、首先修改程序文件  admin/users.php
找到
$filter['pay_points_lt'] = empty($_REQUEST['pay_points_lt']) ? 0 : intval($_REQUEST['pay_points_lt']);
在它下面增加一行代码
$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" />
在它后面增加代码
;手机号码:;<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);

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签