作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

用户管理

... ... @@ -4,7 +4,7 @@
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">{:__('用户名')}:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-username" class="form-control" name="row[username]" type="text">
<input id="c-username" class="form-control" name="row[username]" maxlength="18" type="text">
</div>
</div>
<div class="form-group">
... ...
... ... @@ -2,7 +2,7 @@
<div class="form-group">
<label class="control-label col-xs-12 col-sm-2">{:__('Username')}:</label>
<div class="col-xs-12 col-sm-8">
<input id="c-username" class="form-control" name="row[username]" type="text" value="{$row.username|htmlentities}">
<input id="c-username" class="form-control" name="row[username]" type="text" maxlength="18" value="{$row.username|htmlentities}">
</div>
</div>
<div class="form-group">
... ...
... ... @@ -115,10 +115,10 @@ class User extends Api
$code = $this->request->param('code');
$image = $this->request->param('image');
if(!empty($phone)){
$have_mobile = Db::name('user')->where('mobile', $phone)->where('id', '<>', $user_id)->find();
if($have_mobile){
$this->error('手机号已存在');
}
// $have_mobile = Db::name('user')->where('mobile', $phone)->where('id', '<>', $user_id)->find();
// if($have_mobile){
// $this->error('手机号已存在');
// }
if(empty($code)){
$this->error('验证码不能为空');
}
... ...