Merge branch 'feature/ip_search' of wmtx/platform into release

IP查询
master
廖金灵 4 years ago committed by Gogs
commit e4ab39bf64

@ -72,6 +72,10 @@ class MemberController extends ThinkController
$map['tab_user.register_type'] = ['in', [0, 3, 4, 5, 6]]; $map['tab_user.register_type'] = ['in', [0, 3, 4, 5, 6]];
} }
} }
if (!empty($_GET['register_ip'])) {
$map['tab_user.register_ip'] = $_GET['register_ip'];
}
//判断重复 //判断重复
$is_repeat = false; $is_repeat = false;
if (isset($_REQUEST['is_repeat'])) { if (isset($_REQUEST['is_repeat'])) {

@ -68,6 +68,9 @@
<div class="input-list"> <div class="input-list">
<input type="text" name="account" class="" placeholder="玩家账号" value="{:I('account')}"/>&nbsp; <input type="text" name="account" class="" placeholder="玩家账号" value="{:I('account')}"/>&nbsp;
</div> </div>
<div class="input-list">
<input type="text" name="register_ip" class="" placeholder="注册IP" value="{:I('register_ip')}"/>&nbsp;
</div>
<div class="input-list"> <div class="input-list">
<input type="text" readonly id="time_start" name="time_start" class="" value="{:I('time_start')}" placeholder="注册开始时间" /> <input type="text" readonly id="time_start" name="time_start" class="" value="{:I('time_start')}" placeholder="注册开始时间" />
&nbsp;-&nbsp; &nbsp;-&nbsp;

Loading…
Cancel
Save