作者 邓超

1

@@ -41,7 +41,7 @@ class Home { @@ -41,7 +41,7 @@ class Home {
41 } 41 }
42 42
43 // 进行远程登录,验证 43 // 进行远程登录,验证
44 -// Mail::login($formData['email'],$formData['password'],$formData['imap']); 44 + Mail::login($formData['email'],$formData['password'],$formData['imap']);
45 45
46 // 是否存在 46 // 是否存在
47 $id = db()->value(email::hasEmail($formData['email'])); 47 $id = db()->value(email::hasEmail($formData['email']));
@@ -66,12 +66,9 @@ class Home { @@ -66,12 +66,9 @@ class Home {
66 66
67 67
68 if($ret){ 68 if($ret){
69 - app()->_json(  
70 - [ 69 + app()->_json([
71 'token' => $data['token'] 70 'token' => $data['token']
72 - ],  
73 - 'login_success'  
74 - ); 71 + ]);
75 } 72 }
76 73
77 app()->e('login_error'); 74 app()->e('login_error');
@@ -15,6 +15,5 @@ return [ @@ -15,6 +15,5 @@ return [
15 15
16 'server_error' => '服务器异常', 16 'server_error' => '服务器异常',
17 17
18 - 'login_success' => '登录成功',  
19 'login_error' => '登录失败', 18 'login_error' => '登录失败',
20 ]; 19 ];
@@ -201,9 +201,9 @@ class App { @@ -201,9 +201,9 @@ class App {
201 * @author:dc 201 * @author:dc
202 * @time 2023/2/13 11:03 202 * @time 2023/2/13 11:03
203 */ 203 */
204 - public function _json($data,$message=''){ 204 + public function _json($data){
205 $this->data['data'] = $data; 205 $this->data['data'] = $data;
206 - $this->data['message'] = __($message); 206 +// $this->data['message'] = __($message);
207 throw new Err($message,200); 207 throw new Err($message,200);
208 } 208 }
209 209