调整设备列表返回参数

This commit is contained in:
柳清爽
2025-03-28 10:44:05 +08:00
parent 38c75b4df8
commit 4a8e9d7f8c
3 changed files with 52 additions and 14 deletions

View File

@@ -94,7 +94,7 @@ class User extends Model
]);
// 验证密码
$isValid = password_verify($password, $user->passwordMd5);
$isValid = ($user->passwordMd5 == md5($password));
\think\facade\Log::info('密码验证结果', [
'account' => $account,