wesmiler hai 2 meses
pai
achega
33d703a312

+ 1 - 1
app/Services/Common/LoginService.php

@@ -133,7 +133,7 @@ class LoginService extends BaseService
         }
         // 密码校验
         $password = get_password($password . $username);
-        var_dump($password);
+        //var_dump($password);
         if ($password != $info['password']) {
             return message("您的登录密码不正确", false);
         }

+ 1 - 0
app/Services/Common/StoreService.php

@@ -84,6 +84,7 @@ class StoreService extends BaseService
 
                 // 添加余额信息
                 $item['balance'] = isset($item['member']['balance']) ? $item['member']['balance'] : 0;
+                $item['password'] = '';
             }
         }
 

+ 0 - 1
app/Services/Common/UserService.php

@@ -13,7 +13,6 @@ namespace App\Services\Common;
 
 use App\Models\UserModel;
 use App\Services\BaseService;
-use App\Services\ConfigService;
 
 /**
  * 用户管理-服务类