在ecshop后台在会员列表页增加按手机查询会员

在ecshop后台在会员列表页增加按手机查询会员功能,目的是简化管理员操作,体验更简单。

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

找到 xuew3c.com

$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]' ";
        }

在它下面增加下列代码 内容来自www.xuew3c.com

if ($filter['mobile_phone'])
        {
            $ex_where .=" AND mobile_phone like '%$filter[mobile_phone]%' ";
        }

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

找到 xuew3c.com

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

在它后面增加代码

 手机号码: <input type="text" name="mobile_phone" />

继续找到 xuew3c.com

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

在它下面增加一行代码

listTable.filter['mobile_phone'] = Utils.trim(document.forms['searchForm'].elements['mobile_phone'].value);

下一篇: 让ecshop文章列表以更新时间排序 上一篇: 优化ecshop让首页是真静态

(0)

相关推荐