| xqd
@@ -19,7 +19,7 @@ class UsersInfo extends Form implements LazyRenderable
|
|
|
|
|
|
public function handle(array $input)
|
|
|
{
|
|
|
- $user = User::query()->where('id',$input['id'])->first();
|
|
|
+ $user = User::query()->where(['id'=>$input['id'],'is_distory'=>0])->first();
|
|
|
if(!$user){
|
|
|
|
|
|
return $this->response()->error('请刷新后重试');
|