This commit is contained in:
root 2020-01-29 16:49:32 +08:00
parent 7fc34fa2b8
commit ba9d00f088

View File

@ -36,9 +36,9 @@ class UserController extends Controller
]); ]);
} }
public function id2UserInfo($id) public function getUserInfoById(Request $request)
{ {
if (empty($id)) { if (empty($request->input('id'))) {
abort(500, '参数错误'); abort(500, '参数错误');
} }
return response([ return response([
@ -48,7 +48,7 @@ class UserController extends Controller
'd', 'd',
'transfer_enable', 'transfer_enable',
'expired_at' 'expired_at'
])->find($id) ])->find($request->input('id'))
]); ]);
} }